* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Affichage en deux colonnes pour les grands écrans */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .calendar-section, 
    .appointment-section {
        flex: 1;
        margin-bottom: 0;
    }

    .appointment-section {
        margin-left: 20px;
    }
}

.calendar-section {
    background-color: #ff0078;
    padding: 20px;
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.calendar {
    margin-top: 20px;
}

.week-days {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.dates {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}

.dates span {
    width: 13.5%;
    padding: 10px 0;
    text-align: center;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dates span:hover {
    background-color: #ff4d94;
}

.dates .selected {
    background-color: white;
    color: #ff0078;
}

.appointment-section {
    width: 100%;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.appointment-section h3 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.time-options, .hours {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    padding: 10px 15px;
    border: none;
    background-color: darkblue;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff4d94;
}

select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    width: 100%;
    max-width: 200px;
}
