/* Styles pour le tableau des pays */
.table-header {
    background-color: #4a89dc;
    color: white;
}

.row-even {
    background-color: #ffffff;
}

.row-odd {
    background-color: #f5f5f5;
}

.row-even:hover,
.row-odd:hover {
    background-color: #e8f0fe;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.cadrePrincipal {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style pour les liens */
a {
    color: #4a89dc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}