#playerInfoPanel {
    position: fixed;
    bottom: 20px;   /* změna z top -> bottom */
    right: 20px;
    width: 50px;
    height: 50px;
    background: #00cc66;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

#playerInfoPanel.expanded {
    width: 220px;
    height: auto;
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
}

#playerInfoIcon {
    font-size: 24px;
    color: white;
}

#playerInfoContent {
    display: none;
    color: white;
}

#playerInfoPanel.expanded #playerInfoContent {
    display: block;
}

#playerInfoContent p {
    margin: 4px 0;
    font-size: 14px;
    word-break: break-word;
}
