/* Settings Styles */
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-tone-4);
}

.setting-info {
    padding-right: 20px;
}

.setting-title {
    font-size: 18px;
    font-weight: 500;
}

.setting-desc {
    font-size: 12px;
    color: var(--color-tone-2);
    margin-top: 4px;
}

/* Toggle Switch */
.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: var(--color-tone-2);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color-correct);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.setting-section-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-tone-2);
    margin-top: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-info {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: var(--color-tone-2);
}

.action-btn.small {
    padding: 8px 16px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}