/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    text-align: center;
    position: relative; /* Pour positionner les icônes en filigrane */
}

/* Ajouter des icônes en filigrane sur la page */
body::before {
    content: "\f0b0 \f0c6 \f0c0 \f0e0 \f002"; /* Icônes Font Awesome en unicode */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.1); /* Couleur grise claire */
    z-index: -1; /* Placer en arrière-plan */
    opacity: 0.1; /* Transparence pour un effet de filigrane */
    pointer-events: none; /* Ne pas interférer avec les éléments cliquables */
}

/* Header */
header {
    background-color: #0056a6;
    color: white;
    padding: 20px 10px;
    margin-bottom: 20px;
}

.logo-container {
    margin-bottom: 10px;
}

.logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.title-container h3 {
    font-size: 2.5rem;
    margin: 0;
}

.title-container h4 {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Main Content */
main {
    padding: 20px;
}

/* Services Section */
.services {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
    background-color: #0078d4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

button a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button i {
    font-size: 1.2rem;
}

button:hover {
    background-color: #0056a6;
}

/* Admin Section */
.admin button {
    background-color: #ff7b00;
}

.admin button:hover {
    background-color: #e56700;
}
