.switch-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 15px 0;
    border-bottom: 1px solid #1e293b;
}

.switch-line span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.switch-line strong {
    color: white;
    font-size: 15px;
}

.switch-line small {
    color: #94a3b8;
    font-size: 13px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background-color: #334155;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
}

.slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked+.slider {
    background: #2563eb;
}

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