:root {
    --bg-main: #F2F2F0;       /* Gris papier texturé */
    --accent-blue: #1A365D;   /* Bleu institutionnel */
    --text-dark: #2D3748;
    --grid-color: rgba(26, 54, 93, 0.05);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-wrap: break-word;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 5%;
    z-index: 100001;
    backdrop-filter: blur(10px);
    background-color: rgba(242, 242, 240, 0.9);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 1rem; }
.uni-brand { font-weight: 600; font-size: 0.8rem; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: inherit; font-size: 0.75rem; margin-left: 2rem; font-weight: 600; letter-spacing: 2px; }

/* BURGER MENU */
.menu-toggle { display: none; }
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* SECTION HERO (ACCUEIL) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10%;
    overflow: hidden;
}

/* Texture Blueprint (Grille) */
.blueprint-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Custom hero background image (replaces the grid, set from admin mode) */
.blueprint-overlay.custom-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero background admin controls */
.hero-bg-controls {
    display: none;
    position: absolute;
    bottom: 16px;
    left: 16px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--accent-blue);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.35);
    z-index: 10001;
}
body.admin-mode .hero-bg-controls { display: flex; }

.hero-bg-controls .hero-bg-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a0aec0;
}
.hero-bg-controls button {
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    color: #cbd5e0;
}
.hero-bg-controls button:hover { background: rgba(255, 255, 255, 0.25); color: #fff; }
.hero-bg-controls button.active { background: #3182ce; color: #fff; }

.hero-bg-controls label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #cbd5e0;
}
.hero-bg-controls input[type="range"] {
    width: 80px;
    accent-color: #63b3ed;
    cursor: pointer;
}
.hero-bg-controls #hero-blur-val {
    color: #fff;
    min-width: 32px;
}

.hero-content { display: flex; align-items: center; width: 100%; justify-content: space-between; }

.hero-left h1 {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 0.95;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.status-box {
    margin-top: 3rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
    max-width: 400px;
}

.status-label { font-weight: bold; font-size: 0.7rem; color: #718096; display: block; margin-bottom: 0.5rem; }

/* Portrait avec relief décalé */
.portrait-container { position: relative; width: 400px; height: 500px; }
.portrait-shadow {
    position: absolute;
    top: 25px; left: 25px; width: 100%; height: 100%;
    background: var(--accent-blue);
    z-index: 1;
}
.portrait-img {
    position: relative;
    width: 100%; height: 100%;
    background: #E2E8F0;
    background-size: cover;
    background-position: center;
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
}
.portrait-img.has-photo .placeholder-text { display: none; }

.portrait-admin-controls {
    display: none;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 3;
}
body.admin-mode .portrait-admin-controls { display: flex; }
.portrait-admin-controls button {
    border: none;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.btn-portrait-change { background: #3182ce; }
.btn-portrait-change:hover { background: #2b6cb0; }
.btn-portrait-remove { background: #e53e3e; }
.btn-portrait-remove:hover { background: #c53030; }

/* GENERAL SECTION STYLES */
.works-section, .contact-section { padding: 100px 15%; }
.pub-section, .articles-section { padding: 100px 15%; background: white; }
.section-header { margin-bottom: 4rem; }
.section-number { font-size: 0.9rem; font-weight: bold; color: var(--accent-blue); }

/* SECTION TRAVAUX */
.works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.work-card { background: white; padding: 2rem; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.work-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.work-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent-blue); }
.work-card p { font-size: 0.95rem; line-height: 1.6; color: #4A5568; }

/* SECTION CONTACT & FOOTER */
.contact-content { max-width: 600px; }
.contact-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.contact-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-link { text-decoration: none; color: var(--accent-blue); font-weight: bold; font-size: 0.8rem; letter-spacing: 1px; border-bottom: 1px solid transparent; transition: border-bottom-color 0.3s ease; }
.btn-link:hover { border-bottom-color: var(--accent-blue); }
footer { text-align: center; padding: 2rem 5%; font-size: 0.8rem; color: #718096; border-top: 1px solid rgba(0,0,0,0.1); }
.site-credit { margin-top: 0.5rem; font-size: 0.72rem; color: #A0AEC0; }
.site-credit a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }
.site-credit a:hover { text-decoration: underline; }

.year-marker {
    font-size: 1.2rem; font-weight: bold; margin-top: 4rem;
    border-bottom: 2px solid var(--accent-blue);
    display: inline-block; padding-bottom: 5px;
}

.pub-card {
    padding: 2rem 0;
    border-bottom: 1px solid #EEE;
    transition: all 0.3s ease;
}

.pub-card:hover { transform: translateX(10px); }

.pub-meta { color: var(--accent-blue); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }
.pub-card h3 { font-family: var(--font-serif); font-size: 1.8rem; margin: 0.5rem 0; }
.pub-actions { margin-top: 1rem; }
.btn-pub { 
    background: var(--accent-blue); color: white; padding: 0.5rem 1.2rem; 
    text-decoration: none; font-size: 0.8rem; border-radius: 4px; font-weight: bold;
}

/* SECTION ARTICLES */
.articles-section {
    background-color: var(--bg-main);
}

.articles-container {
    max-width: 800px;
    margin: 0;
}

.year-dropdown {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1rem;
}

.year-summary {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    font-family: var(--font-serif);
    cursor: pointer;
    list-style: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.year-summary::-webkit-details-marker {
    display: none;
}

.year-summary:hover {
    color: #2b5c9d;
}

.year-summary::before {
    content: '+ ';
    display: inline-block;
    width: 20px;
    transition: transform 0.3s ease;
}

.year-dropdown[open] .year-summary::before {
    content: '- ';
}

.articles-list {
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.article-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.article-date {
    font-weight: 600;
    color: #718096;
    font-size: 0.9rem;
    min-width: 60px;
    padding-top: 0.3rem;
}

.article-content {
    flex: 1;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.article-resume {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4A5568;
    margin-bottom: 1rem;
}

.btn-read-more {
    display: inline-block;
    text-decoration: none;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-blue);
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 10000;
}

.btn-read-more:hover {
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    font-size: 0.8rem; font-weight: bold; color: #A0AEC0;
}

/* ARTICLE PAGE STYLES */
.article-page {
    padding: 150px 15% 100px;
    background-color: white;
    min-height: 100vh;
}
.article-header {
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 2rem;
}
.article-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.article-meta {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2D3748;
    max-width: 800px;
}
.article-body p {
    margin-bottom: 1.5rem;
}
.article-body h2 {
    font-family: var(--font-serif);
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}
.article-body h3 {
    font-family: var(--font-serif);
    color: var(--accent-blue);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}
.article-body blockquote {
    border-left: 3px solid var(--accent-blue);
    margin: 0 0 1.5rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #4A5568;
    font-style: italic;
}
.article-body ul, .article-body ol {
    margin: 0 0 1.5rem 1.5rem;
}
.article-body li {
    margin-bottom: 0.5rem;
}
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 1.5rem 0;
}
.article-body a {
    color: var(--accent-blue);
}
.back-link {
    display: inline-block;
    margin-top: 3rem;
    text-decoration: none;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 0.9rem;
}
.back-link:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .articles-container {
        margin: 0 auto;
    }

    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .menu-toggle:checked ~ .nav-links {
        max-height: 400px;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .menu-toggle:checked ~ .burger-menu span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle:checked ~ .burger-menu span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .burger-menu span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Responsive */
    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .status-box {
        margin: 2rem auto 0;
        text-align: left;
    }

    .portrait-container {
        width: 100%;
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
    }

    .portrait-shadow {
        top: 15px; left: 15px;
    }

    /* Adjust main sections padding */
    .works-section, .pub-section, .articles-section, .contact-section {
        padding: 60px 5%;
    }

    /* Center works grid items */
    .works-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .work-card {
        width: 100%;
        max-width: 400px;
    }

    /* Article Responsive */
    .article-header h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
}
/* Admin Mode Styles */
body.admin-mode::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 6px solid #e53e3e;
    pointer-events: none;
    z-index: 9999;
}

#admin-panel {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1A365D;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 1000;
}

body.admin-mode #admin-panel {
    display: flex;
    gap: 10px;
}

#admin-panel button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#btn-admin-save { background: #48bb78; color: white; }
#btn-admin-save:hover { background: #38a169; }

/* Header Login Dropdown */
.header-login-container {
    position: relative;
    display: inline-block;
}

.uni-brand {
    cursor: pointer;
}

.login-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: #333;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 4px;
    z-index: 2000;
    margin-top: 5px;
}

.login-dropdown.show {
    display: block;
}

.login-dropdown input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-dropdown button {
    width: 100%;
    padding: 8px;
    background: #1A365D;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.login-dropdown button:hover {
    background: #2b5c9d;
}

.login-dropdown .error-msg {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: none;
}

.forgot-link {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #718096;
    text-align: center;
    text-decoration: none;
}
.forgot-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

body.admin-mode .editable-field {
    outline: 1px dashed #4299e1;
    padding: 2px;
    border-radius: 2px;
    min-width: 20px;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere; /* long unbroken words must wrap inside the box */
    position: relative;
    z-index: 10000; /* Ensure editable fields are clickable above the border pseudo element */
}
body.admin-mode .editable-field:focus {
    outline: 2px solid #3182ce;
    background: #ebf8ff;
}

.admin-remove-btn, .admin-add-btn {
    display: none;
}

body.admin-mode .admin-remove-btn {
    display: inline-block;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-bottom: 10px;
}

body.admin-mode .admin-add-btn {
    display: block;
    background: #3182ce;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

/* ===== ARTICLE EDITOR TOOLBAR ===== */
#editor-toolbar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 8px 12px;
    background: var(--accent-blue);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.35);
    z-index: 100002;
    max-width: calc(100vw - 32px);
}

#editor-toolbar button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #cbd5e0;
    font-family: var(--font-sans);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

#editor-toolbar button:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
#editor-toolbar button.active { background: #2b5c9d; color: #fff; }

#editor-toolbar select {
    background: #234b7c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    cursor: pointer;
}

#editor-toolbar .ed-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 6px;
}

#ed-status {
    font-size: 0.72rem;
    color: #a0aec0;
    margin: 0 10px 0 14px;
    white-space: nowrap;
}
#ed-status.dirty { color: #fbd38d; }

#ed-save {
    width: auto !important;
    padding: 0 16px !important;
    background: #48bb78 !important;
    color: #fff !important;
    font-weight: 700;
}
#ed-save:hover { background: #38a169 !important; }
#ed-save:disabled { opacity: 0.6; cursor: default; }

/* Image tools bar (appears above the main toolbar when an image is selected) */
#editor-imgbar {
    display: none;
    position: fixed;
    bottom: 78px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 8px 12px;
    background: #234b7c;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.35);
    z-index: 100002;
    max-width: calc(100vw - 32px);
}
#editor-imgbar.show { display: flex; flex-wrap: nowrap; }

#editor-imgbar button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #cbd5e0;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
#editor-imgbar button:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
#editor-imgbar button.active { background: #3182ce; color: #fff; }
#ed-img-delete:hover { background: #e53e3e !important; color: #fff; }

#editor-imgbar label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e0;
    font-size: 0.72rem;
    margin: 0 6px;
    white-space: nowrap;
}
#editor-imgbar input[type="range"] {
    width: 80px;
    accent-color: #63b3ed;
    cursor: pointer;
}
#editor-imgbar .ed-val {
    color: #fff;
    font-weight: 600;
    min-width: 34px;
    text-align: right;
}
#editor-imgbar .ed-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 6px;
}
#editor-imgbar .ed-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a0aec0;
}

body.admin-mode .article-body img { cursor: pointer; }
.article-body img.img-selected {
    outline: 3px solid #3182ce;
    outline-offset: 2px;
}

body.admin-mode .editor-region {
    outline: 1px dashed rgba(66, 153, 225, 0.55);
    outline-offset: 8px;
    border-radius: 2px;
    z-index: 10000;
    position: relative;
}
body.admin-mode .editor-region:focus {
    outline: 2px solid #3182ce;
}

/* Leave room for the floating toolbar while editing */
body.admin-mode .article-page { padding-bottom: 160px; }

/* ===== NEW ARTICLE MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 54, 93, 0.45);
    backdrop-filter: blur(3px);
    z-index: 100003;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.show { display: flex; }

.modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.modal-box h3 {
    font-family: var(--font-serif);
    color: var(--accent-blue);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.modal-field { margin-bottom: 1rem; }
.modal-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #718096;
    margin-bottom: 0.4rem;
}
.modal-field input, .modal-field textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #CBD5E0;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    box-sizing: border-box;
    resize: vertical;
}
.modal-field input:focus, .modal-field textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.12);
}

.modal-row { display: flex; gap: 1rem; }
.modal-row .modal-field { flex: 1; }

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.modal-actions button {
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-sans);
}
.btn-modal-cancel { background: #EDF2F7; color: #4A5568; }
.btn-modal-cancel:hover { background: #E2E8F0; }
.btn-modal-create { background: var(--accent-blue); color: #fff; }
.btn-modal-create:hover { background: #2b5c9d; }
