/* Status indicator (e.g., Poisoned) */
.status-indicator {
    position: absolute;
    bottom: -12px; /* place below portrait */
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 6px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    pointer-events: none;
    z-index: 30;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Adjust offsets per portrait */
#player-status-indicator {
    bottom: -26px; /* unified offset */
}

#opponent-status-indicator {
    bottom: -26px; /* unified offset */
}
