html {
    background-color: #282828;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.team-panel {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
}

#map-container {
    position: relative;
}

#map {
    position: relative;
    width: 1024px;
    height: 1024px;
    background: url('../assets/mapimages/de_cache_radar.png') no-repeat center center;
    background-size: cover;
    overflow: visible;
    background-color: #282828;
    margin-left: auto;
    margin-right: auto;
}

.player-indicator {
    position: absolute;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 10;
    transform-origin: 50% 50%;
}

.player-info {
    color: #ebdbb2;
}

#player-helmet {
    color: #98971a;
}

#player-kit {
    color: #458588;
}

#player-hp {
    color: #ebdbb2;
}

.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background: red;
    border-radius: 50%;
    left: 0;
    top: 0;
}

.triangle {
    width: 0;
    height: 0;
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -12px);
    transform-origin: 50% 15px;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid white;
}
