/* Style de base */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    transition: background-color 0.5s ease;
}

.color-picker {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #000; /* Bordure pour mieux voir le cercle blanc */
}

#white { background-color: white; }
#red { background-color: red; }
#blue { background-color: blue; }
#green { background-color: green; }
#yellow { background-color: yellow; }

.container {
    margin-top: 100px;
}

h1 {
    font-size: 2.5rem;
    color: #333;
}

input[type="date"] {
    font-size: 1.5rem;
    padding: 10px;
    margin: 20px 0;
}

button {
    font-size: 2rem;
    padding: 15px 30px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #ff3b2f;
}

#countdown {
    font-size: 2rem;
    margin-top: 20px;
    color: #333;
}

#age {
    font-size: 2rem; /* Texte en gros */
    margin-top: 20px;
    color: #333;
    font-weight: bold;
}
