/**
 * Kandidat Type Selector Add-on Specific Styles
 * Generic UI elements (forms, buttons, containers) are handled by Core CSS
 */

/* Type description box */
#type-description {
    margin-top: 10px;
    padding: 10px;
    background: #f0f0f1;
    border-left: 4px solid #140c86;
}

/* Preview section */
#preview-section {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#preview-section h3 {
    margin-top: 0;
    color: #140c86;
}

#preview-content {
    background: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#preview-content h4 {
    margin-top: 0;
    color: #23282d;
}

#preview-content h5 {
    color: #140c86;
    margin-top: 15px;
    margin-bottom: 10px;
}

#preview-content ul {
    margin-left: 20px;
}

#preview-content ul li {
    margin-bottom: 5px;
}

/* Results section */
#results-section {
    margin-top: 20px;
}

/* Role badges */
.kandidat-type-selector .role-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
}

.kandidat-type-selector .role-badge.administrator {
    background: #2271b1;
    color: white;
}

.kandidat-type-selector .role-badge.personlig {
    background: #72aee6;
    color: white;
}

/* Form table enhancements */
.kandidat-type-selector .form-table th {
    width: 200px;
}

.kandidat-type-selector .form-table textarea,
.kandidat-type-selector .form-table select {
    width: 100%;
    max-width: 600px;
}

/* Radio button spacing */
.kandidat-type-selector fieldset label {
    margin-bottom: 10px;
}

/* Disabled button state */
.kandidat-type-selector .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

