/* Trust Options in Table */
.trust-options {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.trust-option {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.trust-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
    accent-color: #2ecc71; /* Green color for checked radio */
}

/* Green highlight when active/checked */
.trust-option.active {
    background-color: transparent;
    color: #276749;
    border-color: transparent;
}

/* Custom Radio Style */
.trust-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid #2ecc71; /* Green border */
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-option input[type="radio"]:checked {
    background-color: #2ecc71;
}

.trust-option input[type="radio"]:checked::after {
    content: none;
}

.trust-option:hover {
    background-color: transparent;
}