.players-joined{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid  rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.avatar-wrapper{
    position: relative;
}

.player-avatar{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.avatar-picker{
    display: flex;
    justify-content: center;
    align-items: center;
    width:90%;
}

.picker-arrow{
    font-family: var(--font-body);
    color: var(--cream);
    background: none;
    border: none;
    font-size: 3rem;
    font-weight: 200;
    text-align: center;
    cursor: pointer;
}

.avatar-selected{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--black);
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.btn-icon {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
}

.footer-buttons .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background-color: transparent;
}

.icon:hover {
    opacity: 1;
}

#qr-popover {
    padding: 20px; 
    border-radius: 12px;
    border: 1px solid  rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06); 
    backdrop-filter: blur(12px);
    color: var(--cream);
    margin: auto;
}

#copy-popover {
    background: none;
    color: var(--cream);
    border: none;
    padding: 0;
    margin: auto;
}
