.tst-container {
    text-align: center;
}
.tst-header {
    margin-bottom: 20px;
}
.tst-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    cursor: pointer;
}
.tst-toggle-switch {
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 30px;
    position: relative;
    transition: background-color 0.3s;
}
.tst-toggle-switch.is-active {
    background-color: #6a4b9a;
}
.tst-toggle-knob {
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}
.tst-toggle-switch.is-active .tst-toggle-knob {
    transform: translateX(30px);
}
.tst-label {
    font-weight: 500;
    transition: color 0.3s;
}
.tst-tab-content {
    display: none;
}
.tst-tab-content.is-active {
    display: block;
}
