.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: left 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.on {
    background: #e74c3c;
}

.toggle-switch.on:before {
    left: calc(100% - 26px);
}

.toggle-text {
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.toggle-text.on {
    color: #e74c3c;
}
