.sf-fcp-toolbar {
    position: fixed;
    z-index: 999999;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #111827;
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
}
.sf-fcp-toolbar button,
.sf-fcp-modal button {
    border: 0;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    font: inherit;
}
.sf-fcp-toggle,
.sf-fcp-save {
    background: #2563eb;
    color: #fff;
}
.sf-fcp-reset {
    background: #f59e0b;
    color: #111827;
}
.sf-fcp-cancel {
    background: #e5e7eb;
    color: #111827;
}
.sf-fcp-status {
    min-width: 80px;
    color: #d1fae5;
}
.sf-fcp-status.is-error {
    color: #fecaca;
}
body.sf-fcp-active .sf-fcp-editable {
    outline: 2px dashed rgba(37,99,235,.75);
    outline-offset: 3px;
    cursor: pointer !important;
    transition: outline-color .15s ease, box-shadow .15s ease;
}
body.sf-fcp-active .sf-fcp-editable:hover {
    outline-color: rgba(245,158,11,.95);
    box-shadow: 0 0 0 4px rgba(245,158,11,.12);
}
body.sf-fcp-active .sf-fcp-image {
    min-height: 24px;
}
.sf-fcp-modal {
    position: fixed;
    z-index: 1000000;
    inset: 0;
    background: rgba(17,24,39,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.sf-fcp-modal-card {
    width: min(680px, 100%);
    background: #fff;
    color: #111827;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.sf-fcp-modal-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
}
.sf-fcp-textarea {
    width: 100%;
    min-height: 160px;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px;
    font: 16px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.sf-fcp-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
}
@media (max-width: 600px) {
    .sf-fcp-toolbar {
        left: 10px;
        right: 10px;
        bottom: 10px;
        flex-wrap: wrap;
    }
    .sf-fcp-status {
        width: 100%;
    }
}
