/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 100%;
    margin: 0;
    padding: 15px;
    line-height: 1.5;
    background: #f9f9f9;
    color: #333;
}

h1, h2 {
    color: #222;
    margin-bottom: 15px;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.2em;
    margin-top: 20px;
}

/* Listes */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-list li {
    background: white;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.article-list li span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.article-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Formulaires */
.edit-form {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    min-height: 200px;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 8px 12px;
    background: #4a6fa5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    margin: 2px;
    transition: background 0.2s;
}

.btn:hover {
    background: #3a5a8f;
}

/* Conteneur pour les boutons */
.btn-container {
    text-align: center;
    margin: 15px 0;
}

/* Articles */
article {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.article-body {
    white-space: pre-wrap;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 600px) {
    .article-actions {
        flex-direction: column;
    }

    .btn {
        width: auto;
    }
}