.booking-container {
    max-width: 1000px;
    margin: 120px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.booking-container h1 {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Bodoni Moda', serif;
    color: #5c335b;
    font-size: 30px;
}

.booking-container p {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
}

.booking-content {
    display: flex;
    gap: 20px;
}

.booking-calendar {
    flex: 2;
}

.booking-calendar h2 {
    margin-bottom: 10px;
    font-family: 'Bodoni Moda', serif;
    color: #303030;
    font-size: 25px;
}

.timezone {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.calendar {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.day-name {
    padding: 8px;
    font-weight: bold;
    color: #555;
    font-family: 'Lato', sans-serif;
}

.day {
    padding: 8px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.day:hover {
    background-color: #f0f0f0;
}

.day.active {
    background-color: #5c335b;
    color: white;
}

.day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.time-slots button {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.time-slots button:hover {
    background-color: #f0f0f0;
}

.time-slots button.selected {
    color: #fff;
    background-color: #5c335b;
}

.booking-details {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.service-details h2 {
    margin-bottom: 10px;
    font-family: 'Bodoni Moda', serif;
    color: #303030;
    text-align: center;
    font-size: 25px;
}

.service-details p {
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
    color: #606060;
    font-size: 18px;
}

.service-details hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.service-details button {
    background-color: #5c335b;
    color: white;
    width: 100%;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.service-details button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .booking-content {
        flex-direction: column;
    }
}