body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007bff;
    text-align: center;
    margin-bottom: 30px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}

strong {
    font-weight: 600;
    color: #555;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.a-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.a-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }
}
/* ... autres styles ... */

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

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.profile-section {
    text-align: center;
    margin-bottom: 20px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

select#status {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* ... autres styles ... */
/* ... autres styles ... */

.action-button {
    display: inline-block;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.action-button.edit {
    background-color: #4CAF50;
    color: white;
}

.action-button.delete {
    background-color: #f44336;
    color: white;
}

.action-button.edit:hover {
    background-color: #3e8e41;
}

.action-button.delete:hover {
    background-color: #da190b;
}

/* ... autres styles ... */