/* Radio Group Container */
.radio-group-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    max-width: 400px;
}

/* Radio Option Styles */
.radio-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 0;
}

    .radio-option:hover {
        border-color: #2196F3;
        background: #f8fbff;
    }

    .radio-option.selected {
        border-color: #2196F3;
        background: #e3f2fd;
    }

    /* Radio Input Styles */
    .radio-option input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #999;
        border-radius: 50%;
        outline: none;
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
        margin-right: 10px;
        transition: all 0.2s ease;
    }

        .radio-option input[type="radio"]:hover:not(:checked) {
            border-color: #2196F3;
            background-color: rgba(33, 150, 243, 0.1);
        }

        .radio-option input[type="radio"]:checked {
            border-color: #2196F3;
            background: #2196F3;
            box-shadow: inset 0 0 0 4px white; /* Creates white inner circle - works reliably across all browsers */
        }

        /* Removed problematic ::after pseudo-element approach - input elements don't support pseudo-elements reliably */
        /* .radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
} */

        .radio-option input[type="radio"]:disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }

/* Radio Label Styles */
.radio-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.radio-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.radio-subtitle {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .radio-group-container {
        flex-direction: column;
        max-width: 100%;
    }

    .radio-option {
        padding: 12px 14px;
    }

        .radio-option input[type="radio"] {
            width: 16px;
            height: 16px;
            margin-right: 10px;
        }

    .radio-title {
        font-size: 13px;
    }

    .radio-subtitle {
        font-size: 11px;
    }
}
.dull-btn {
    opacity: 0.4; 
    filter: grayscale(60%); 
}
.text-ellipsis {
    display: inline-block;
    max-width: 180px; /* adjust based on column width */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.menu-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

body.is-loading,
body.is-loading * {
    cursor: wait !important;
}
.rz-dropdown {
    position: relative !important;
    width: 100% !important;
}

.rz-dropdown-panel {
    position: absolute !important;
    z-index: 9999;
    transform: none !important;
}

.rz-tree {
    position: relative;
    z-index: 1;
}

.numeric-input-styled input::-webkit-outer-spin-button,
.numeric-input-styled input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.numeric-input-styled input[type=number] {
    -moz-appearance: textfield;
}