
:root {
    --editor-primary: #00C2FF;
    --editor-bg: rgba(0, 45, 98, 0.95);
    --editor-text: #ffffff;
    --editor-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

#fgv-editor-toolbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--editor-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100000;
    box-shadow: var(--editor-shadow);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideDown {
    from { transform: translate(-50%, -100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.editor-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 8px;
}

.editor-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--editor-primary);
}

.editor-btn.primary {
    background: var(--editor-primary);
    color: #002D62;
}

.editor-btn.primary:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.editable-active {
    outline: 2px solid var(--editor-primary) !important;
    outline-offset: 4px;
    cursor: text;
    transition: 0.2s;
}

.editable-active:hover {
    background: rgba(0, 194, 255, 0.05);
}

#editor-status-badge {
    background: #00C2FF;
    color: #002D62;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}
