body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 350px; /* Taille du logo */
    margin-top: 40px;
    margin-bottom: 40px;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 500px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

p {
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.button:hover {
    background-color: #218838;
}

.messages {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.success {
    color: #28a745;
    font-weight: bold;
    text-align: center;
}

.error {
    color: #dc3545;
    font-weight: bold;
    text-align: center;
}

/* Styles pour le formulaire de suppression d'émetteur */
#delete-email-form {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Style pour le champ de texte */
input[type="text"] {
    padding: 5px;
    margin-right: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 170px;
    text-align: center;
}

/* Style pour le bouton rouge */
input[type="button"].btn-red {
    padding: 8px 16px;
    background-color: #FF4C4C; /* Rouge */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

input[type="button"].btn-red:hover {
    background-color: #E04343; /* Rouge foncé */
}

/* Style pour les tableaux */
table {
    margin: auto;
    border-collapse: collapse;
    text-align: center;
    width: 80%; /* Ajuster la largeur selon votre besoin */
}

th, td {
    border: 1px solid black;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

/* Styles pour les en-têtes de tableaux spécifiques */
.error-table th {
    background-color: #F1948A;
}

.info-table th {
    background-color: #F9E79F;
}

/* Style pour le bouton principal */
input[type="button"].btn-primary {
    padding: 8px 16px;
    margin-top: 30px;
    background-color: #3498DB; /* Bleu */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

input[type="button"].btn-primary:hover {
    background-color: #2980B9; /* Bleu foncé */
}

