* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
	font-size: 24 px;
}

body {
    font-family: Arial, sans-serif;
    font-size: 22px; /* Taille de police augmentée */
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #4A90E2;  /* Couleur bleue moderne */
    padding: 20px;
    color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 28px;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #357ABD;  /* Hover avec un bleu plus foncé */
    border-radius: 5px;
}

main {
    padding: 40px;
}

.section-container {
    margin-bottom: 40px;
    background-color: #fff;  /* Fond blanc pour chaque section */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Ombre douce pour une meilleure lisibilité */
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4A90E2;  /* Bleu pour les titres */
}

.stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    text-align: center;
}

.stat-icon {
    width: 50px;
    margin-bottom: 10px;
}

.action-bar {
    margin-bottom: 20px;
}

.btn-add {
    background-color: #4A90E2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-add:hover {
    background-color: #357ABD;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.styled-table thead tr {
    background-color: #4A90E2;
    color: #fff;
    text-align: left;
    font-weight: bold;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
	font-size: 22px; 
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}

footer {
    background-color: #4A90E2;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.modal {
    display: none; /* Cache la fenêtre modale par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fond assombri */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 500px; /* Taille modérée de la fenêtre */
    max-width: 90%;
    text-align: left; /* Alignement du texte à gauche */
    position: relative;
    font-size: 18px; /* Taille de police ajustée */
}

.modal-content h2 {
    font-size: 24px; /* Taille de police plus grande pour le titre */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.btn-add {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.btn-add:hover {
    background-color: #45a049;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}


