#history{
    max-width: 800px;
    margin: auto;
}

#history .toggle-options{
    display: flex;
    gap: 5px;
    margin: 10px -10px;
    padding: 0 10px;
    flex-wrap: wrap
}

#history .toggle-option{
    background: var(--bg-toggle-off);
    color: var(--clr-toggle-off);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 15px;
    border-radius: 5px;
    line-height: 1;
    border: 2px solid transparent;
}

#history .toggle-option.active{
    color: var(--clr-toggle-on);
    background: var(--grd-primary);
    border: 2px solid var(--clr-primary);
    font-weight: 600;
}

#history .toggle-content{
    background: #5a943f;
    padding: 8px;
    border-radius: 5px;

}

.note{
    font-size: 13px;
    text-align: center;
    margin: 5px 0;
}

#platform-filter-wrap .options {
    display: flex;
    gap: 5px;
    overflow: auto;
    margin: 0;
    margin-bottom: 10px;
}

#platform-filter-wrap .option {
    padding: 5px 10px;
    text-transform: capitalize;
    font-size: 14px;
    border-radius: 5px;
    text-wrap: nowrap;
    line-height: 1;
    background: var(--bg-toggle-off);
    color: var(--clr-toggle-off);
}

#platform-filter-wrap .option.active {
    color: var(--clr-toggle-on);
    background: #000000;
    border: 2px solid #6dec03;
    font-weight: 600
}