   body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}
	footer {
	width: 100%;
	font-family: Arial, sans-serif;
	text-align : center;
	background: #f4f4f4;
    color: #222;	
	}
/* BANNIERE */
 .titlesite {
color : C8FF00;
font-size: 70px;
text-align : center;
 }
 .validated {
    color: red;
    font-size: 12px; /* plus petit */
    animation: blink 1s infinite;
}

.blink {
    color: red !important;
    font-size: 12px;
    font-weight: bold;
    animation: blinkAnim 1s steps(2, start) infinite;
}

@keyframes blinkAnim {
    0% { visibility: visible; }
    50% { visibility: hidden; }
    100% { visibility: visible; }
}	
	
	
.header-banner {
    width: 100%;
    height: 260px;
    background-image: url('/uploads/design/banniere.png');
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #2c5e2e;
}
A:hover {
  text-decoration: none;
}
/* NAVIGATION */

nav {
    background: #2c5e2e;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.menu-group {
    background: rgba(255,255,255,0.08);
    padding: 10px;
    border-radius: 8px;
}

.menu-group strong {
    display: block;
    margin-bottom: 8px;
    color: #d8f5c0;
}

.menu-group form {
    margin: 4px 0;
}

.menu-group button {
    width: 100%;
    border: none;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.menu-group button:hover {
    background: #dff0d8;
}

/* CONTENU */

#content {
    max-width: 1200px;
    margin: 25px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

hr {
    display: none;
}

img {
    max-width: 100%;
}
.dropdown {
    position: relative;
}

.dropdown button {
    background: none;
    border: none;
    color: white;
    padding: 18px 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.dropdown button:hover {
    background: rgba(255,255,255,0.1);
}

/* SOUS MENU */

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content form {
    margin: 0;
}

.dropdown-content button {
    width: 100%;
    text-align: left;
    border: none;
    background: white;
    color: #222;
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-content button:hover {
    background: #e9f5df;
}

/* APPARITION */

.dropdown:hover .dropdown-content {
    display: block;
}


table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th {
    background: #2c5e2e;
    color: white;
    padding: 12px;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table tr:hover {
    background: #f5f5f5;
}

.user-active {
    background: #edf8ed;
}

.user-pending {
    background: #fff8d9;
}

.user-inactive {
    background: #ffe5e5;
}

.user-active:hover,
.user-pending:hover,
.user-inactive:hover {
    filter: brightness(0.98);
}

.site-footer {

    margin-top: 50px;

    background-image:
        linear-gradient(
            rgba(18, 40, 20, 0.55),
            rgba(18, 40, 20, 0.55)
        ),
        url('/uploads/design/banniere.png');

    background-size: cover;

    background-position: center;

    border-top: 4px solid #2c5e2e;

    color: #f2f2f2;
	
	background-position: bottom;
}

.footer-overlay {

    backdrop-filter: blur(2px);

    padding: 40px 20px;
}

.footer-content {

    max-width: 900px;

    margin: auto;

    text-align: center;
}

.footer-content h3 {

    margin-top: 0;

    font-size: 28px;

    color: #d8f5c0;

    margin-bottom: 15px;

    text-shadow:
        0 2px 4px rgba(0,0,0,0.4);
}

.footer-content p {

    line-height: 1.7;

    margin: 10px 0;

    text-shadow:
        0 1px 2px rgba(0,0,0,0.5);
}

.footer-copy {

    margin-top: 20px;

    font-weight: bold;

    color: #ffffff;
}

.footer-small {

    font-size: 13px;

    opacity: 0.85;
}

.profile-card {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    font-family: Arial;
    overflow: hidden;
}

.profile-header {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f5f7fa;
    align-items: center;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.header-info h2 {
    margin: 0;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    margin-right: 5px;
}

.badge.role {
    background: #007bff;
    color: #fff;
}

.badge.ok {
    background: #28a745;
    color: #fff;
}

.badge.danger {
    background: #dc3545;
    color: #fff;
}

.profile-body {
    padding: 20px;
}

.profile-body h3 {
    margin-top: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.row span {
    color: #666;
}

.badge2 {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    margin-left: 6px;
    border-radius: 999px;
    background: #e53935;
    color: white;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
}
