/* Editor Toolbar Styles */
.editor-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(40,50,194,0.12);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.editor-toolbar .tb-group {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 10px;
    border-right: 1px solid rgba(0,0,0,0.08);
    margin-right: 4px;
}
.editor-toolbar .tb-group:last-child { border-right: none; }
.editor-toolbar button {
    border: 1px solid rgba(40,50,194,0.15);
    background: rgba(255,255,255,0.9);
    color: #1a1a2e;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all .15s;
    font-weight: 500;
    white-space: nowrap;
}
.editor-toolbar button:hover {
    background: rgba(40,50,194,0.08);
    border-color: #2832c2;
    color: #2832c2;
}
.editor-toolbar button.active {
    background: #2832c2;
    color: #fff;
    border-color: #2832c2;
}
.editor-toolbar .color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid rgba(0,0,0,0.1);
}
.editor-toolbar .color-btn:hover { transform: scale(1.2); }
.editor-toolbar .tb-label {
    font-size: 11px;
    color: #888;
    margin-right: 4px;
}
.editor-toolbar .save-hint {
    margin-left: auto;
    font-size: 11px;
    color: #888;
    font-style: italic;
}
