
.bookings-list-section {
    background: linear-gradient(135deg, rgba(15, 86, 59, 0.95) 0%, rgba(25, 135, 84, 0.9) 100%);
    min-height: 100vh;
}

.booking-tabs .nav-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 0 2px;
    transition: all 0.3s;
}

.booking-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--bs-warning), var(--bs-orange));
    color: #000;
    font-weight: 600;
}

.booking-tabs .nav-link:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.stat-card {
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.booking-card {
    transition: all 0.3s;
    height: 100%;
}

.booking-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
}

.detail-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-glow {
    position: relative;
    overflow: hidden;
}

.bg-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
    left: -100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.empty-state {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .booking-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}















.booking-status-section {
    background: linear-gradient(135deg, rgba(15, 86, 59, 0.95) 0%, rgba(25, 135, 84, 0.9) 100%);
    min-height: 100vh;
}

.status-badge {
    padding: 20px;
}

.status-approved, .status-rejected, .status-pending {
    animation: fadeIn 0.8s ease-out;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--bs-primary), var(--bs-success));
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: absolute;
    left: -30px;
    z-index: 2;
    border: 2px solid transparent;
}

.timeline-step.completed .timeline-marker {
    background: var(--bs-success);
    border-color: var(--bs-success);
}

.timeline-step.current .timeline-marker {
    background: var(--bs-warning);
    border-color: var(--bs-warning);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex-grow: 1;
}

.method-card {
    transition: all 0.3s;
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-success);
}

.support-card {
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: var(--bs-primary);
}

.support-icon {
    width: 40px;
    height: 40px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pending-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.note-box {
    border-left: 3px solid var(--bs-warning);
}

.rejection-note {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.border-success {
    border-color: var(--bs-success) !important;
}

.border-danger {
    border-color: var(--bs-danger) !important;
}

.btn-glow {
    background: linear-gradient(135deg, var(--bs-warning) 0%, var(--bs-orange) 100%);
    border: none;
    color: #000;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    color: #000;
}
