/* Health Item Styling */
.health-item {
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #00FF00 0%, #00AA00 70%, #006600 100%);
    border: 2px solid #00FF00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.health-item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.health-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.health-item-template {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, #00FF00 0%, #00AA00 70%, #006600 100%);
    border: 1px solid #00FF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 6px rgba(0, 255, 0, 0.4);
}