.ams-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ams-checkbox-group--horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.ams-checkbox-group .form-check {
    margin-bottom: 0;
}

/* Model list */
.ams-model-list {
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.ams-model-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.1s;
}

.ams-model-item:last-child {
    border-bottom: none;
}

.ams-model-item:hover {
    background-color: #f8f9fa;
}

.ams-model-item.selected {
    background-color: #e7f1ff;
}

.ams-model-item input[type="radio"] {
    flex-shrink: 0;
}

.ams-model-label {
    flex-grow: 1;
    font-size: 0.9rem;
}

.ams-model-provider {
    color: #6c757d;
    font-size: 0.8rem;
    margin-right: 4px;
}

/* Info icon tooltip */
.ams-info-icon {
    color: #6c757d;
    cursor: default;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Clickable Model label in prompt view */
.ams-open-link {
    cursor: pointer;
    color: inherit;
    text-decoration: underline dotted;
}

.ams-open-link:hover {
    color: #0d6efd;
}
