/* 系统设置页面样式 */
/* 从 settings.js 提取的内联样式 */

/* ===== 用户选择列表样式 ===== */
.user-select-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.user-select-item {
    display: block;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-select-item:hover {
    background: #f9fafb;
    border-color: #3b82f6;
}

.user-select-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-radio {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.custom-radio input[type="radio"]:checked + .radio-checkmark {
    background: #3b82f6;
}

.radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    transition: all 0.2s;
    transform: scale(0);
}

.custom-radio input[type="radio"]:checked + .radio-checkmark .radio-dot {
    transform: scale(1);
    background: #fff;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
}

.user-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
}

.empty-users-message {
    text-align: center;
    color: #6b7280;
    padding: 20px;
}

.form-hint {
    color: #6b7280;
    display: block;
    margin-top: 5px;
}

/* ===== 表单组样式 ===== */
.form-group {
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
}

/* ===== 用户选择提示样式 ===== */
.users-selection-hint {
    margin-top: 12px;
    padding: 8px;
    background: #f0f9ff;
    border-radius: 4px;
    font-size: 12px;
    color: #0369a1;
}

