@import"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/scss/bootstrap";.form-control{border-radius:8px}.booking-page{background-color:#f5f7fb}.booking-card{border-radius:.75rem;box-shadow:0 .25rem .65rem rgba(15,23,42,.06);border:1px solid rgba(148,163,184,.3)}.booking-card .card-header{background-color:#fff;border-bottom-color:rgba(148,163,184,.3);font-weight:600}.booking-card .card-body .reserve-btn{background:#2cec44;color:#fff;order:1px solid #2cec44;border-radius:8px;border:none}.booking-card .card-body .btnDefault{background:#0f0f0f;color:#fff;order:1px solid #2cec44;border-radius:8px;border:none}.exposition-tabs .btn{min-width:140px;margin-right:10px;border:1px solid #2cec44;color:#000}.exposition-tabs .btn:last-child{margin-right:0}.exposition-tabs .btn.active{background-color:#2cec44;color:#fff;border:1px solid #2cec44}.exposition-tabs .btn:hover{background:#000;color:#fff;border:1px solid #000}#cart-items .cart-line-item{font-size:.875rem}#cart-items .cart-line-item strong{font-weight:600}#cart-items .cart-line-item .remove-item{border:none;font-size:13px;text-decoration:none}#cart-items .cart-line-item .remove-item:hover{background:#fff}#reserveBtn{font-weight:600;text-transform:uppercase}.booking-card .form-label{font-size:.875rem;font-weight:500;color:#4b5563}.booking-card .form-control,.booking-card .form-select{font-size:.9rem;border-radius:.5rem}@media(max-width: 991.98px){.exposition-tabs{flex-wrap:wrap}.exposition-tabs .btn{flex:1 1 100%;margin-bottom:.25rem}} 

/* Fullscreen overlay - stays fixed, centered, does NOT move */
.vm-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* transparent white background */
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Centered spinner only */
.vm-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #e0e0e0;
    border-top-color: #2cec44; /* your green color */
    border-radius: 50%;
    animation: vmSpin 0.8s linear infinite;
}

@keyframes vmSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vm-hide {
    display: none !important;
}

/* ------------------------------
   STEP WIZARD
-------------------------------*/
.vm-step-wizard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}
.vm-step-item {
    text-align: center;
}
.vm-step-circle {
    width: 48px;
    height: 48px;
    background: #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}
.vm-step-item.active .vm-step-circle {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1);
}
.vm-step-item.completed .vm-step-circle {
    background: #198754;
    color: #fff;
}
.vm-step-label {
    font-size: 14px;
    margin-top: 6px;
    font-weight: 600;
}
.vm-step-line {
    flex: 1;
    height: 3px;
    background: #dee2e6;
}