/* Custom Typography Styles */

/* Label for text color control */
.cm-text-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure our custom text control is visible */
.block-editor-inspector-controls .components-panel__body .cm-text-control {
    display: block !important;
}

/* ================================================================ */
/* WORDPRESS CORE CONTROL HIDING - Force hide any remaining WP controls */
/* ================================================================ */

/* TARGETED FIX: Hide the specific Typography tools panel identified by debug script */
.typography-block-support-panel,
.components-tools-panel.typography-block-support-panel,
.components-grid.components-tools-panel.typography-block-support-panel,
[class*="typography-block-support-panel"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* Hide WordPress default style panels that might still appear */
.block-editor-inspector-controls .components-panel__body[aria-label*="Typography"] {
    display: none !important;
}

/* Hide WordPress typography controls */
.block-editor-inspector-controls .block-editor-font-family-control,
.block-editor-inspector-controls .block-editor-font-size-control,
.block-editor-inspector-controls .components-font-size-picker {
    display: none !important;
}
