/* ======================
   MY BOOKINGS PAGE STYLES
   ====================== */

   .my-bookings-section {
    background: #f9f9f9;
    min-height: 80vh;
}

/* Tabs Navigation */
.bookings-tabs {
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.bookings-tabs .nav-item {
    flex: 1;
}

.bookings-tabs .nav-link {
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    transition: all 0.3s ease;
}

.bookings-tabs .nav-link:hover {
    background: rgba(249, 205, 100, 0.1);
    color: #F9CD64;
}

.bookings-tabs .nav-link.active {
    background: #F9CD64;
    color: white;
}

.bookings-tabs .nav-link i {
    font-size: 1.2rem;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.booking-card-past {
    opacity: 0.85;
}

.booking-card-cancelled {
    opacity: 0.7;
}

/* Card Header */
.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-weight: 600;
}

.booking-card-header.pending {
    background: linear-gradient(135deg, #ffc107 0%, #ffdb4d 100%);
    color: white;
}

.booking-card-header.confirmed {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
    color: white;
}

.booking-card-header.completed {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    color: white;
}

.booking-card-header.cancelled {
    background: linear-gradient(135deg, #dc3545 0%, #e4606d 100%);
    color: white;
}

.booking-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.booking-id {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Card Body */
.booking-card-body {
    padding: 25px;
    flex: 1;
}

.booking-service {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-service-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 3px solid #F9CD64;
}

.booking-service-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #212529;
}

.booking-service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F9CD64;
    margin: 0;
}

/* Booking Details */
.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.booking-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 0.95rem;
}

.booking-detail-item i {
    color: #F9CD64;
    font-size: 1.1rem;
}

/* Special Requests */
.booking-special-requests {
    margin-top: 20px;
    padding: 15px;
    background: rgba(249, 205, 100, 0.05);
    border-left: 4px solid #F9CD64;
    border-radius: 8px;
}

.booking-special-requests strong {
    color: #212529;
    display: block;
    margin-bottom: 8px;
}

.booking-special-requests p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card Footer */
.booking-card-footer {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #e9ecef;
}

.btn-cancel-booking {
    flex: 1;
    padding: 12px 20px;
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cancel-booking:hover {
    background: #dc3545;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-modify-booking {
    flex: 1;
    padding: 12px 20px;
    background: #F9CD64;
    color: white;
    border: 2px solid #F9CD64;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-modify-booking:hover {
    background: white;
    color: #F9CD64;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-rebook {
    width: 100%;
    padding: 12px 20px;
    background: #F9CD64;
    color: white;
    border: 2px solid #F9CD64;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-rebook:hover {
    background: white;
    color: #F9CD64;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.empty-state i {
    font-size: 5rem;
    color: rgba(249, 205, 100, 0.3);
    margin-bottom: 25px;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: #212529;
    margin-bottom: 15px;
}

.empty-state p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bookings-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .booking-service {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .booking-service-image {
        width: 100%;
        height: 150px;
    }
    
    .booking-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bookings-tabs {
        padding: 5px;
    }
    
    .bookings-tabs .nav-link {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .bookings-tabs .nav-link i {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .booking-card-body {
        padding: 20px;
    }
    
    .booking-card-footer {
        flex-direction: column;
    }
    
    .btn-cancel-booking,
    .btn-modify-booking,
    .btn-rebook {
        width: 100%;
    }
    
    .empty-state {
        padding: 60px 20px;
    }
    
    .empty-state i {
        font-size: 4rem;
    }
    
    .empty-state h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .booking-service-info h4 {
        font-size: 1.1rem;
    }
    
    .booking-service-price {
        font-size: 1.2rem;
    }
    
    .booking-detail-item {
        font-size: 0.9rem;
    }
}