.wp-fce-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #f8f8f8;
    line-height: 1.4;
}

.wp-fce-label {
    font-weight: 600;
    margin-right: 2px;
}

.wp-fce-button {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    background: #ffffff;
    color: #222222;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    line-height: 1;
    padding: 8px 11px;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.wp-fce-button:hover,
.wp-fce-button:focus-visible {
    border-color: #666666;
    outline: none;
}

.wp-fce-button:active {
    transform: translateY(1px);
}

.wp-fce-button.is-active,
.wp-fce-button[aria-pressed="true"] {
    background: #222222;
    border-color: #222222;
    color: #ffffff;
}

/* Ukuran font konten diubah oleh JavaScript agar ukuran Normal tetap persis mengikuti tema WordPress. */

@media (max-width: 480px) {
    .wp-fce-controls {
        gap: 6px;
        padding: 10px;
    }

    .wp-fce-button {
        padding: 8px 10px;
    }
}
