body {
    overflow-x: hidden;
}


.site-title-anchor {
	    font-size: 36px;
    text-transform: uppercase;
    font-weight: 900;
    font-family: auto;
}

.post-thumbnail {
	display: flex !important; 
	justify-content: center !important
}

.site-branding {
display : flex; 
justify-content : center;
align-items : center;

}


.site-description {
    position: relative;
    left: 20px;
    top: 12px;
    font-weight: 700;
    font-family: monospace;
}

.custom-logo-link {
    margin-right: 20px;
}

.site-branding img {
	width: 70px !important
}


/* Conteneur g�n�ral */
#exchange-rate-container {
    max-width: 700px;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Titre */
#exchange-rate-container h2 {
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Formulaire */
#exchange-rate-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#base-currency {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#get-rates-btn {
    background-color: #b31b24;
    color: #fff;
    border: none;
    padding: 9px 18px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#get-rates-btn:hover {
    background-color: #8f1519;
}

/* Conteneur des taux */
#rates-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Liste des taux */
#rates-container br {
    display: none; /* On va g�rer avec des paragraphes */
}

#rates-container p {
    margin: 6px 0;
    font-size: 1rem;
    color: #333;
}

/* Pour une meilleure lisibilit� : alternance de couleurs */
#rates-container p:nth-child(odd) {
    background-color: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
}
