.push-settings-page {
    min-height: 100vh;
    background: var(--bg-grey, #f5f6fa);
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.settings-back {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.settings-back svg {
    width: 22px;
    height: 22px;
    color: #333;
}

.settings-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

.settings-placeholder {
    width: 36px;
}

.settings-content {
    padding: 15px;
}

.settings-section {
    margin-bottom: 20px;
}

.settings-section-title {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 4px;
}

.settings-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f5f5f5;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item-info {
    flex: 1;
}

.settings-item-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.settings-item-desc {
    font-size: 12px;
    color: #999;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: 0.3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

input:checked + .slider {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.time-range {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.time-range input {
    width: 90px;
    height: 36px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 0 8px;
    font-size: 14px;
    text-align: center;
    outline: none;
    background: #fafbfc;
}

.time-range input:focus {
    border-color: var(--primary);
}

.save-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    margin-top: 20px;
    transition: all 0.2s;
}

.save-btn:active {
    transform: scale(0.97);
}