/* =======================
    NOTES
======================= */
#section-notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em 4em;
    padding: 2em;
}

.note {
    flex: 1 1 300px;
    max-width: 300px;
    height: 150px;

    background: var(--bg-doux);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 15px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.note:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.icon-note,
.note-header svg {
    width: 35px;
    height: 35px;
    fill: var(--accent-hover);
    flex-shrink: 0;
}

.info-note {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-word;
}

.date-creation {
    margin-top: auto;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    width: 100%;
    text-align: right;
}

.date-limite {
    margin-top: 0;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    width: 100%;
    text-align: right;
}

/* =======================
    BOUTTONS
======================= */
.bouton-ajout {
    display: flex;
    justify-content: center;
    padding: 3em 0;
}

.bouton {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-principal);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-soft);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bouton:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 184, 120, 0.4);
} 
