body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px !important;
    margin: 25px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #003d3d; /* Bleu pétrole foncé */
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #003d3d; /* Bleu pétrole foncé */
    margin-top: 20px;
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button {
    display: block;
    width: 100%;
    background-color: #003d3d; /* Bleu pétrole foncé */
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

button:hover {
    background-color: #002a2a; /* Bleu pétrole encore plus foncé */
}

p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

input[type="checkbox"] {
    margin-right: 10px;
}

#result {
    margin-top: 20px;
    font-size: 1.1em;
    color: #003d3d; /* Bleu pétrole foncé */
    text-align: center;
}

/* Change the color of pagination links */
.pagination .page-link .page-item.active {
    color: #ffffff; !important; /* Text color */
    background-color: #4f5459; !important;/* Background color */
    border-color: #8f99a4; !important;/* Border color */
}

/* Change the color when the page is active */
.pagination .active .page-link {
    background-color: #666967; !important;/* Background color for active page */
    border-color: #e0e5e1; !important; /* Border color for active page */
    color: #c9c2c2; !important;/* Text color */
}

/* Change color on hover */
.pagination .page-link:hover {
    background-color: #b1b8be; !important; /* Background color on hover */
    color: #ffffff; !important;/* Text color on hover */
    border-color: #424446; !important;
    /* Border color on hover */
}

.custom-error {
    color: #7c2d12; /* Couleur des erreurs */
    font-weight: bold; /* Optionnel : rendre le texte plus visible */
}


.container-home {
    max-width: 1500px !important;
    margin: 25px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
