/* 进度条样式 */
.sync-progress-container {
    padding: 20px;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.progress-details {
    text-align: center;
    color: #666;
    font-size: 12px;
}

/* 提醒选项样式 */
.reminder-options {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.reminder-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    transition: background-color 0.2s;
}

.radio-label:hover {
    background-color: #f0f0f0;
    padding-left: 5px;
    border-radius: 4px;
}

.radio-label input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

.radio-label span {
    font-size: 14px;
    color: #333;
}

/* 复选框样式优化 */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* 导入选项区域 */
.import-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}