/* Variant Modal Format Select Dropdown Styling */

/* Main select element */
select[data-variant-modal-target="formatSelect"] {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

/* Vendor group headers (optgroup) */
select[data-variant-modal-target="formatSelect"] optgroup {
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #374151 !important;
    background-color: #f3f4f6 !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.25rem !important;
}

/* Format options */
select[data-variant-modal-target="formatSelect"] option {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    color: #1f2937 !important;
    background-color: #ffffff !important;
}

/* Disabled (already used) options */
select[data-variant-modal-target="formatSelect"] option:disabled {
    color: #9ca3af !important;
    font-style: italic !important;
    background-color: #f9fafb !important;
}

/* Hover state for enabled options */
select[data-variant-modal-target="formatSelect"] option:not(:disabled):hover {
    background-color: #eff6ff !important;
    color: #1e40af !important;
}