/* Style global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1d;
    color: #e0e0e0;
}

/* Style pour l'en-tête */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #064d4c;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.btn-logout {
    text-decoration: none;
    background-color: #e60000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-logout:hover {
    background-color: #ff3333;
}

/* Style pour la navigation des catégories */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-category {
    text-decoration: none;
    background-color: #064d4c;
    color: #e0e0e0;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-category:hover {
    background-color: #046464;
}

/* Style pour la section principale */
main {
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Style pour le tableau */
.table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #444;
}

table th {
    background-color: #064d4c;
    color: #e0e0e0;
}

/* Boutons généraux */
.btn {
    text-decoration: none;
    background-color: #064d4c;
    color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #046464;
}

/* Boutons spécifiques */
.btn-accept {
    background-color: #008000;
}

.btn-accept:hover {
    background-color: #00b300;
}

.btn-reject {
    background-color: #e60000;
}

.btn-reject:hover {
    background-color: #ff3333;
}

/* Style pour le pied de page */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #064d4c;
    color: #e0e0e0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
