.game-settings-select {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-settings-container {
    display: flex;
}

.game-settings-btn {
    align-items: center;
    background-color: var(--bg-secondary);
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    flex: 1 1 0;  
    padding: 0.5rem 0.75rem;
    justify-content: center;
}
.game-settings-btn.selected {
    background: var(--text-secondary);
    color: var(--text-primary);
}

.game-settings-btn:first-child {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.game-settings-btn:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
/* ==========================================================================
   ERROR MESSAGES (for multi-select)
   ========================================================================== */
.toolbar-error {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(237, 110, 87, 0.15); /* light red bg */
    color: var(--text-danger);
    font-size: 0.9rem;
    font-weight: 500;
}
.toolbar-error.hidden {
    display: none;
}
