/* ─── Barre latérale coulissante ──────────────────────────────────────────── */
/* Les classes info-box, info-box-half, info-row, info-title, info-value,    */
/* form-section-title, modal, modal-content sont dans localapp.scss.         */

.sidebar {
    position: fixed;
    right: -300px;
    top: 60px;
    width: 300px;
    height: calc(100% - 60px);
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}
