#tabulka-prvku tr:hover {
  background-color: #f8f9fa;
  transition: 0.2s;
}

#tabulka-prvku td:last-child {
  font-family: monospace;
  color: #6c757d;
  text-align: left;
}

/* Tento kód říká, jak mají ty kroužky vypadat */

.map-badge {
  position: absolute;
  background-color: #203864;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  pointer-events: auto;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  z-index: 10;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.map-badge:hover {
  transform: translate(-50%, -50%) scale(1.2);
  background-color: #0056b3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  font-size: 18px;
}

.modal-header {
  border-bottom: 3px solid #fd7e14;
}

.modal-title {
  letter-spacing: 2px;
}

