@font-face {
    font-family: lato;
    src: url("../fonts/Lato-Regular.woff2");
}

@font-face {
    font-family: lexend;
    src: url("../fonts/Lexend-Regular.woff2");
}

/* ====================================================== */
/* ================== STYLE PAR DEFAUT ================== */
/* ====================================================== */
body {
    font-size: 1.1rem;
    font-family: lato;
}

p {
    color: black;
}

/* ====================================================== */
/* ================== EDITION INLINE ================== */
/* ====================================================== */
/* Messages inline proches du champ édité */
.inline-flash {
    border-left: 4px solid rgba(0, 0, 0, .15);
    font-size: .95rem;
}

/* Quand l'éditeur est visible “à la place” de la vue */
[data-inline-edit] .ql-container {
    border-color: #212529;
    /* harmonise avec tes bordures noires */
}

/* edition.css */
[data-inline-edit] .form-control {
    max-width: 100%;
}

[data-inline-edit] [data-editor] {
    transition: opacity .15s ease;
}

/* ====================================================== */
/* ================== BOUTON D'ARCHIVE ================== */
/* ====================================================== */
.archivee-return-bottom {
    margin-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
}

.archivee-btn {
    padding: 0.7rem 1.4rem;
    background: linear-gradient(to right, #000, #333);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archivee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #333, #000);
}