
.category-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.category-display h1 {
    font-family: var(--font-fancy);
    color: var(--cream);
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.01em;
}

.player-progress{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 80%;
    flex-shrink: 0;
}
.player-progress-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.player-progress-dot{
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.locked-in {
    justify-content: center;
}

.locked-in-msg {
    font-family: var(--font-fancy);
    font-size: 1.5rem;
    color: var(--cream);
    text-align: center;
    opacity: 0;
    animation: fade-in 0.3s ease forwards;
}

@keyframes fade-in {
    to { opacity: 1; }
}