﻿/* Radio Button Container */
.radio-container {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

/* Radio Label */
.radio-label {
    font-size: 0; /* Hides the text but keeps the label */
}

/* Hide the default radio input */
.radio-container input[type="radio"] {
    display: none !important;
}

/* Custom Radio Button */
.radio-label::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #007bff !important;
    border-radius: 50% !important;
    display: inline-block !important;
    transition: background-color 0.3s ease !important, border-color 0.3s ease !important;
    margin-right: 8px !important;
}

/* Checked State */
.radio-container input[type="radio"]:checked + .radio-label::before {
    background-color: #007bff !important;
    border-color: #0056b3 !important;
}

/* Hover Effect */
.radio-container input[type="radio"]:hover + .radio-label::before {
    border-color: #0056b3 !important;
}

/* Focus State */
.radio-container input[type="radio"]:focus + .radio-label::before {
    outline: 2px solid #80bdff !important;
    outline-offset: 2px !important;
}

.dt-actions {
    display: flex;
    justify-content: center;
    gap: 6px;
}

    .dt-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
