/* 设置弹窗样式 */
.settings-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--nav-border);
    background: linear-gradient(to right, rgba(10, 102, 194, 0.05), rgba(13, 124, 79, 0.05));
}

.settings-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.settings-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.settings-section {
    margin-bottom: 25px;
}

.settings-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--nav-border);
}

.settings-option {
    margin-bottom: 10px;
}

.settings-option .action-button {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-option .action-button:hover {
    background-color: rgba(10, 102, 194, 0.1);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .settings-content {
        width: 95%;
        max-width: 95%;
    }
    
    .settings-header {
        padding: 20px 15px;
    }
    
    .settings-body {
        padding: 15px;
    }
}