#fuchs-editor-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #2b2b2b;
    color: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

#fuchs-editor-toolbar .fe-status {
    color: #9fd89f;
    margin-right: 8px;
}

#fuchs-editor-toolbar .fe-btn {
    background: #7a3b2e;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

#fuchs-editor-toolbar .fe-btn:hover {
    background: #5f2d22;
}

#fuchs-editor-toolbar .fe-cancel {
    background: #555;
}
#fuchs-editor-toolbar .fe-cancel:hover {
    background: #444;
}

#fuchs-editor-toolbar .fe-logout {
    background: transparent;
    color: #ccc;
    margin-left: auto;
    padding: 6px 10px;
}
#fuchs-editor-toolbar .fe-logout:hover {
    color: #fff;
    background: transparent;
    text-decoration: underline;
}

#fuchs-editor-toolbar .fe-message {
    font-size: 13px;
    color: #9fd89f;
}

/* Wird nur gesetzt, wenn die Editor-Toolbar tatsächlich angezeigt wird
   (eingeloggt oder ?edit in der URL) – normale Besucher sehen keine
   Verschiebung. */
body.fe-toolbar-active {
    padding-top: 42px;
}
body.fe-toolbar-active .navbar {
    top: 42px;
}

#editable-region.fe-editing {
    outline: 2px dashed #7a3b2e;
    outline-offset: 6px;
    background: rgba(122, 59, 46, 0.03);
}

#editable-region.fe-editing:focus {
    outline-color: #c9563e;
}
