.booking-container {
    padding-top: 150px;
    padding-bottom: 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #1a1a1a, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Calendar Styling */
.calendar-wrapper {
    padding: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

.calendar-header button {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.day:hover:not(.empty):not(.disabled) {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.day.today {
    color: var(--accent);
    font-weight: 700;
    border: 1px solid var(--accent);
}

.day.selected {
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(94, 92, 230, 0.4);
}

.day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Slots Styling */
.slots-wrapper {
    padding: 30px;
    max-height: 800px;
    overflow-y: auto;
}

/* Custom Scrollbar for Slots Wrapper */
.slots-wrapper::-webkit-scrollbar {
    width: 5px;
}

.slots-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.slots-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: none;
}

.slots-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

.slots-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.slot {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.slot:hover:not(.booked) {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

.slot.selected-slot {
    background: var(--text-primary);
    color: #ffffff;
    font-weight: 600;
    border-color: var(--text-primary);
}

.slot.booked {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
}

.placeholder-text {
    grid-column: 1 / -1;
    color: var(--text-secondary);
    text-align: center;
    padding: 40px 0;
}

/* Form Inner Styling */
.booking-details-form h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.input-group input,
.input-group select,
.input-group textarea {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 12px;
    color: #1a1a1a;
    width: 100%;
    font-family: var(--font-main);
}

.input-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a1a1a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.05);
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Responsive */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        padding-top: 100px;
    }
    
    .booking-header h1 {
        font-size: 2.5rem;
    }
}
