#war-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}
#tooltip {
    position: absolute;
    background: #111;
    color: white;
    padding: 10px;
    border-radius: 5px;
    pointer-events: none;
    z-index: 10;
}
.battle-marker {
    fill: red;
    stroke: black;
    stroke-width: 1px;
    cursor: pointer;
}
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        r: 5;
        opacity: 1;
    }
    50% {
        r: 10;
        opacity: 0.5;
    }
    100% {
        r: 5;
        opacity: 1;
    }
}
.tab-content {
    margin-top: 20px;
}
