/* Style commun pour l'ensemble du site (index.php, forum.php, login.php) */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}


header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Style pour les formulaires (utilisé dans login.php et forum.php) */
form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    height: 100px;
}

button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #555;
}

/* Style des messages d'erreur ou de succès */
p {
    margin-bottom: 15px;
}

p.error {
    color: red;
    font-weight: bold;
}

p.success {
    color: green;
    font-weight: bold;
}

/* Style pour la liste des messages (dans forum.php) */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Média queries pour petits écrans */
@media (max-width: 600px) {
    section {
        margin: 10px;
        padding: 15px;
    }
    
    button {
        width: 100%;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}
