.toggle-container {
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    width: max-content;
    margin: 20px auto;
    margin-top: 0px;
}
.toggle-option {
    padding: 10px 20px;
    border-radius: 5px;
    background: #ebefff;
    cursor: pointer;
    transition: background 0.3s;
    border: solid 1px #0d2dac10;
    box-sizing: border-box;
    color: #828492;
}
.toggle-option:hover {
    border: solid 1px #283da6;
    box-sizing: border-box;
    color: #283da6;
}
.toggle-option.active {
    background: #283da6;
    color: white;
}