.game-settings-toolbar {
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    left: 50%;
    padding: 0.5rem;
    position: fixed;
    top: 20%;
    transform: translateX(-50%);
    width: max-content;
}
.toolbar-divider {
    display: flex;
    justify-content: center;
}
.toolbar-group {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding: 0 0.5rem;
}
.game-type-dropdown-button {
    color: var(--text-secondary);
    font-size: 1.25rem
}
.faded {
    opacity: 0.5;
    cursor: pointer;
    position: relative;
}
.faded:hover::after {
    content: attr(title);
    position: absolute;
    left: 0;
    bottom: -1.7rem;
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0.3rem;
    white-space: nowrap;
    z-index: 1;
}
.toolbar-btn {
    display: flex;
    justify-content: center;
    position: relative;
}
.toolbar-divider {
    background-color: var(--text-secondary);
    margin: 0 0.5rem;
    width: 2px;
}

.toolbar-hint {
    position: absolute;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.15rem 0.7rem;
    border-radius: 0.35rem;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 2;
}
.toolbar-group:hover .toolbar-hint,
.toolbar-group:focus-within .toolbar-hint {
    opacity: 1;
}
