.settings-page{
    padding: 14px 14px 30px;
    background: #f8f9fc;
    min-height: 100%;
}

.settings-section{
    background: #fff;
    border-radius: 18px;
    padding: 10px 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.settings-section-title{
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin: 8px 4px 12px;
}

.settings-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 4px;
    border-bottom: 1px solid #f0f0f0;
}

.settings-item:last-child{
    border-bottom: none;
}

.settings-item-info{
    flex: 1;
}

.settings-item-title{
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.settings-item-desc{
    font-size: 12px;
    color: #6b7280;
    line-height: 1.8;
}

.switch{
    position: relative;
    display: inline-block;
    width: 52px;
    height: 30px;
    flex-shrink: 0;
}

.switch input{
    opacity: 0;
    width: 0;
    height: 0;
}

.slider{
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    transition: .25s;
    border-radius: 999px;
}

.slider:before{
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    right: 4px;
    top: 4px;
    background: white;
    transition: .25s;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.switch input:checked + .slider{
    background: linear-gradient(135deg,#7c3aed,#4f46e5);
}

.switch input:checked + .slider:before{
    transform: translateX(-22px);
}

.settings-select{
    border: none;
    background: #f3f4f6;
    padding: 10px 12px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    color: #111827;
}

.settings-danger-btn{
    width: 100%;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 6px;
    cursor: pointer;
}

.settings-danger-btn:active{
    transform: scale(.98);
}