/* Conteneur principal */
.supertimer {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

/* Style du titre principal */
#supertimer-chrono {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
}

/* Style du sous-titre */
#supertimer-chrono-total {
    font-size: 1.0em;
    font-weight: bold;
    margin: 10px 0;
}

/* Style du label et de l'input */
.supertimer-settings {
    margin-top: 20px;
}

#supertimer-input {
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style des boutons */
[id^="supertimer-btn"] {
    padding: 8px 12px;
    margin: 5px 2px;
    border-radius: 5px;
    border: none;
    background-color: #0072ed;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

[id^="supertimer-btn"]:hover {
    background-color: #005bb5;
}

#supertimer-notice {
    margin-top: 10px;
    font-style: italic;
}
