body {
    background-color: #FFF8E1; /* Blanc cassé pour un fond doux */
    font-family: Arial, sans-serif;
    font-family: 'Balsamiq Sans', sans-serif;
}

.pGlobal{
    text-align: center;
    padding:10px;
    color: #676766;
}

.hero-body {
    
    width: 100%;  /* Prend toute la largeur disponible */
    max-width: 600px;  /* Limite la largeur à 400px sur les grands écrans */
    margin: 0 auto;  /* Centre le conteneur horizontalement */
    text-align: left;
}


.hero {
    background: linear-gradient(135deg, #FFD166, #FFA07A); /* Dégradé Jaune -> Saumon */
}

.box {
    background-color: #FADADD; /* Rose pâle pour adoucir */
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.title {
    color: #c05a2b !important; /* Rouge framboise pour attirer l’attention */
    margin-bottom: 20px;
    
}

#convertButton {
    background-color: #ed7684; /* Rouge framboise pour un bouton dynamique */
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    margin-top:40px;

}
#convertButton:focus {
    outline: none;
    box-shadow: none;
}

#convertButton:hover {
    background-color: #da616f; /* Un rouge plus foncé au survol */
}

#result {
    font-size: 20px;
    font-weight: 200 !important;
    color: #887871;
}

.label{
    color: #676766;
}

footer{
    text-align: center;
    color: #5b3d40;
}
footer p{
    padding: 2px 0;
}

input, select, textarea, button {
    font-family: 'Balsamiq Sans', sans-serif;  /* Applique la font à tous les éléments de formulaire */
    color: #676766;
}


table {
    width: 100%;
    /*border-collapse: collapse;*/
    background: rgb(196, 158, 158);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #b35252;
}

th {
    background-color: #ec8055;
    color: rgb(233, 196, 196);
    font-size: 18px;
    
}

td {
    background-color: #ec80c6;
}

tr:hover td {
    background-color: #ffecf2;
}

