@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    background-color: #0f2b2e;
    color: #e0f7fa;
    margin: 0;
    padding: 0;
}

#banniere {
    width: 600px;
    height: 150px;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    background-image: url('images/banniere.jpg');
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#corps_forum, #footer {
    border: 1px solid #1a4d4f;
    width: 90%;
    margin: 50px auto 100px auto;
    padding: 15px;
    background-color: #12383c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#td, #table, #th {
    /*border: 1px solid #1a4d4f;*/
    background-color: #16555a;
    border-radius: 5px;
    padding: 8px;
}

label {
    display: block;
    width: 150px;
    float: left;
    font-weight: bold;
    color: #b2ebf2;
}

#quote {
    width: 100%;
    background-color: #1c5d61;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    font-style: italic;
    padding: 10px;
    border-left: 4px solid #4db6ac;
    color: #e0f7fa;
}

.vt_auteur, .vt_mess {
    background-color: #186c6f;
    padding: 10px;
    border-radius: 5px;
    color: #b2ebf2;
}

.ico, .titre, .nombremessages, .nombrevu, .nombresujets, .auteur, .derniermessage, .categorie, .mp_titre, .mp_expediteur, .mp_time {
    padding: 5px;
}

.titre {
    width: 300px;
    font-size: 1.1em;
    font-weight: bold;
    color: #e0f7fa;
}

.derniermessage {
    font-size: 0.9em;
    color: #b2dfdb;
}

.auth-message {
    text-align: center;
    background-color: #16555a;
    padding: 10px;
    border-radius: 5px;
    color: #b2ebf2;
}

button, input[type="button"], input[type="submit"], input[type="reset"] {
    background-color: #00897b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: #00695c;
}

fieldset {
    border: 2px solid #1a4d4f;
    border-radius: 8px;
    padding: 15px;
    background-color: #16555a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

legend {
    font-size: 1.2em;
    font-weight: bold;
    color: #e0f7fa;
    padding: 5px 10px;
    background-color: #1a4d4f;
    border-radius: 5px;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    color: #b2ebf2;
    text-align: center;
    padding: 10px;
    background-color: #1a4d4f;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Style pour le tableau */
.forum-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.forum-table th, .forum-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #1a4d4f;
}

.forum-table th {
    background-color: #16555a;
    color: #e0f7fa;
    font-weight: bold;
}

.forum-table .forum-row:hover {
    background-color: #1a4d4f;
}

/* Styles pour les auteurs et les messages */
.author {
    width: 25%;
}

.message {
    width: 75%;
}

/* Style pour les détails sur le membre */
.member-details {
    background-color: #12383c;
}

.member-details .avatar {
    width: 150px;
    text-align: center;
}

.member-details .avatar img {
    width: 100px;
    border-radius: 50%;
}

/* Style pour les textes de message */
.message-text {
    background-color: #186c6f;
    padding: 10px;
    color: #b2ebf2;
    border-radius: 5px;
}

/* Liens et boutons */
a.btn-link {
    background-color: #00897b;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
}

a.btn-link:hover {
    background-color: #00695c;
}

/* Section Configuration */
.config-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #b2ebf2;
    text-align: center;
    padding: 10px;
    background-color: #1a4d4f;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.config-form {
    width: 80%;
    margin: 20px auto;
    background-color: #12383c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.config-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.config-item label {
    width: 50%;
    font-weight: bold;
    color: #b2ebf2;
    text-align: right;
    padding-right: 10px;
}

.config-input {
    width: 40%;
    padding: 8px;
    border: 1px solid #1a4d4f;
    border-radius: 5px;
    background-color: #16555a;
    color: #e0f7fa;
}

.config-submit {
    background-color: #00897b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 20px auto;
    font-size: 1.1em;
}

.config-submit:hover {
    background-color: #00695c;
}


