/* Preloader container */
.vlmt-preloader {
    position: fixed;
    top: 4px;
    left: 4px;
    padding: 6px 15px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.vlmt-preloader.visible {
    display: inline-flex;
    opacity: 1;
    pointer-events: none;
}

/* Centered text */
.vlmt-preloader__text {
    position: static;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    pointer-events: none;
}

/* Progress fill */
.vlmt-preloader__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #ffffff60;
    transition: width 0.25s ease;
    border-radius: 15px;
    z-index: 1;
}
