/* ============================================================
   settings.css - 设置面板专属样式
   ============================================================ */

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #e8dcb8;
    border-radius: 10px;
    overflow: hidden;
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f0e8d4;
    cursor: pointer;
    transition: all 0.15s;
    background: #fff;
    font-family: "SimSun", "宋体", "Songti SC", "STSong", serif;
    font-size: 14px;
    color: #2a2418;
}
.settings-row:last-child {
    border-bottom: none;
}
.settings-row:active {
    background: #fff8e7;
}
.settings-row-label {
    font-weight: 700;
    font-size: 14px;
}
.settings-row-value {
    font-size: 14px;
    color: #8a6a2a;
    font-weight: 600;
}
.settings-row-danger {
    color: #c62828 !important;
    font-weight: 700;
}