/* Role Selection as Chips */
.role-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
}

/* Hide default radio */
.role-options input[type="radio"] {
    display: none;
}

/* Style labels like chips */
.role-options label {
    padding: 8px 14px;
    border: 2px solid #d1d5db;
    border-radius: 20px;
    background: #f9fafb;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
}

/* Hover effect */
.role-options label:hover {
    background: #e0f2fe;
    border-color: #0073b1;
    color: #0073b1;
}

/* Selected role */
.role-options input[type="radio"]:checked + label {
    background: #0073b1;
    color: white;
    border-color: #0073b1;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 115, 177, 0.3);
}
