/* Voxel Duration Matcher - Simple Version */

/* Hide the duration addon completely (it's auto-managed) */
.vdm-duration-addon {
    display: none !important;
}

/* Legacy class - also hide if auto-managed */
.vdm-auto-managed {
    display: none !important;
}

/* Hide disabled options in select dropdowns */
select option[disabled] {
    display: none !important;
}

select option.vdm-hidden {
    display: none !important;
}

/* Overlay to block select interaction (if needed for debugging) */
.vdm-select-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: transparent;
    cursor: not-allowed;
}

/* Locked message styling (if needed for debugging) */
.vdm-locked-message {
    margin-top: 8px;
    color: #059669;
    font-size: 13px;
    font-weight: 500;
}
