/* Fix for Mode Buttons shrinking */
.mode-btn-split-group {
    flex-shrink: 1;
    /* Allow group to shrink */
    min-width: auto;
}

.mode-btn {
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.2s;
}

.mode-btn .mode-icon {
    display: inline-block !important;
    /* Always show icon 'ने' */
    flex-shrink: 0;
}

.setup-help-icon {
    flex-shrink: 0;
}

/* Tablet / Intermediate Resize Fix */
/* When navbar gets crowded, hide the text labels of the split buttons first */
@media (max-width: 1200px) {

    .mode-btn.split-left .mode-label,
    .mode-btn.split-right .mode-label {
        display: none !important;
    }

    .mode-btn.split-left,
    .mode-btn.split-right {
        padding: 6px 10px !important;
        /* Reduce padding */
    }

    /* Ensure icons ('ने') and help ('?') remain visible */
    .mode-btn.split-left .mode-icon,
    .mode-btn.split-right .mode-icon,
    .mode-btn.split-left .setup-help-icon,
    .mode-btn.split-right .setup-help-icon {
        display: inline-flex !important;
    }
}