/* Page-specific styles for Bookings Page */
body {
    background-color: #F5F5F7;
    padding-top: 100px;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1D1D1F;
}

.booking-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.booking-img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
}

.booking-info {
    flex-grow: 1;
}

.booking-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1D1D1F;
}

.booking-meta {
    color: #86868B;
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: flex;
    gap: 15px;
}

.booking-meta i {
    color: #D4AF37;
}

.booking-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-confirmed {
    background: #E4F9E4;
    color: #34C759;
}

.status-pending {
    background: #FFF4D6;
    color: #F5A623;
}

.action-btn {
    padding: 10px 20px;
    background: #1D1D1F;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .booking-card {
        flex-direction: column;
        text-align: center;
    }

    .booking-img {
        width: 100%;
        height: 160px;
    }

    .booking-meta {
        justify-content: center;
    }
}