.toggle-wrapper {
    position: relative;
    width: 115px;
    height: 38px;
    font-size: 13px;
    background: #b7c6da;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    font-family: sans-serif;
}

/* Nút trượt trắng */
.toggle-bg {
    position: absolute;
    width: 47%;
    height: 32px;
    background: white;
    border-radius: 50px;
    transition: transform 0.2s ease;
    left: 3px;
    top: 3px;
    z-index: 0;
    box-shadow: 0 0 4px 0 rgba(213, 213, 213, 0.50);
}

/* Button */
.toggle-btn {
    font-family: 'Arial-Bold' !important;
    flex: 1;
    height: 100%;
    border: none;
    background: none;
    font-size: 10px;
    font-weight: 600;
    color: #e9eef6;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-btn.active {
    color: #163F78;
    font-family: 'Arial-Bold' !important;
}

/* slide switch  */
.switch {
    position: relative;
    width: 48px;
    height: 22px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #D8E5F5;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    transition: background-color 0.2s ease;
}

/* Nút tròn */
.slider::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    left: 0px;
    top: -2px;
    background-color: #163F78;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

/* Khi bật */
input:checked+.slider::before {
    transform: translateX(30px);
}

input:checked+.slider {
    background-color: #163f7861;
}