/* /css/map-vets.css — popup weterynarzy na mapie */

/* ============================================================= */
/* MAPA — plik map-vets.js: Popup dla weterynarzy                */
/* ============================================================= */

.vets-popup {
  font: 14px/1.45 system-ui, Segoe UI, Roboto, Arial;
  color: #222;
  max-width: 340px;
}

.vets-popup .vets-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e6ff;
  box-shadow: 0 10px 24px rgba(0,0,0,.16), 0 2px 6px rgba(0,0,0,.06);
}

/* Górny pasek z ikoną W i nazwą */
.vets-popup .vets-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 11px;
  background: linear-gradient(90deg, #1e88e5, #42a5f5);
  color: #fff;
}

.vets-popup .vets-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  flex: 0 0 auto;
}

.vets-popup .vets-icon-circle span {
  display: block;
  transform: translateY(-0.5px);
}

.vets-popup .vets-header-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.vets-popup .vets-name {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vets-popup .vets-city {
  font-size: 12px;
  opacity: 0.88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Body z danymi kontaktowymi */
.vets-popup .vets-card-body {
  padding: 10px 12px 12px;
  background: #fff;
}

.vets-popup .vets-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vets-popup .vets-info-list li {
  display: flex;
  gap: 8px;
  margin: 4px 0;
  align-items: flex-start;
}

.vets-popup .vets-info-list .k {
  min-width: 76px;
  color: #666;
  font-size: 12px;
  flex: 0 0 auto;
}

.vets-popup .vets-info-list .v {
  color: #222;
  font-size: 13px;
  flex: 1 1 auto;
}

.vets-popup .vets-info-list .v a {
  color: #1e88e5;
  text-decoration: none;
}
.vets-popup .vets-info-list .v a:hover {
  text-decoration: underline;
}

.vets-popup .vets-meta-row {
  margin-top: 6px;
}

.vets-popup .vets-meta-source {
  display: inline-block;
  font-size: 11px;
  color: #888;
}

/* Responsywność popupa weterynarzy */
@media (max-width: 420px) {
  .vets-popup { 
    max-width: 86vw; 
  }
  .vets-popup .vets-name { 
    font-size: 14px; 
  }
}
