

/* =======================
    MEMOS PAGE
======================= */

.memos-section {
    margin: 2em 0;

}

.memos-table-container {
    width: 100%;
    overflow-x: auto;
}

.memos-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-doux);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
}

/* HEADER */

.memos-table thead {
    background: var(--accent);
}

.memos-table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
}

/* CELLS */

.memos-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-soft);
}

/* ROWS */

.memos-row {
    transition: background 0.2s ease;
}

.memos-row:hover {
    background: var(--creme);
}

/* ICON */

.memo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-hover);
}

/* TITLE */

.memo-title {
    font-weight: 600;
}

/* DATES */

.memo-date-start,
.memo-date-limit {
    font-style: italic;
    color: #777;
}

/* ACTIONS */

.memo-actions {
    text-align: center;
}

.memos-action-button {
    display: inline-block;
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.memos-action-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* EMPTY */

.memos-empty td {
    text-align: center;
    padding: 1.5em;
    font-style: italic;
    color: #777;
}



/* =======================
    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);
} 
