/* ===== RESET SIMPLE ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
                 "Helvetica Neue", sans-serif;
    background: #f5f7fa;
    color: #222;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 650px;
    margin: auto;
    padding: 16px;
}

/* ===== TITRES ===== */
h1 {
    margin-bottom: 5px;
}

h2 {
    margin-top: 25px;
}

/* ===== TEXTE ===== */
i {
    color: #666;
}

/* ===== IMAGES ===== */
img {
    width: 100%;
    border-radius: 12px;
    margin: 12px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ===== FORMULAIRES ===== */
input,
textarea,
button {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* textarea plus agréable */
textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== BOUTONS ===== */
button {
    background: #2e7d32;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #1b5e20;
}

/* ===== LIENS ===== */
a {
    text-decoration: none;
    color: #1565c0;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* ===== LISTES ===== */
ul {
    padding-left: 18px;
}

/* ===== CARTES JOURNAL ===== */
.journal-entry {
    background: white;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
