/* =========================================================
   ZEMLJEVID DERMATOLOGOV - v15 wireframe layout
   80% app + 20% partnerji, celotna višina ekrana.
   ========================================================= */

:root {
  --zd-side-space: 10px;
  --zd-top-space: 10px;
  --zd-gap: 10px;
  --zd-sidebar-width: 20%;
  --zd-violet: #8b5cf6;
  --zd-violet-dark: #6d28d9;
  --zd-teal: #14b8a6;
  --zd-text: #111827;
  --zd-muted: #475569;
  --zd-soft: #f8fafc;
  --zd-border: rgba(29, 38, 53, 0.10);
  --zd-shadow: 0 12px 34px rgba(29, 38, 53, 0.08);
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

.mapdr-section-full,
.mapdr-section-full>.ct-section-inner-wrap,
.mapdr-section-full>.section-container,
.mapdr-section-full .bde-section__container,
.mapdr-section-full .ct-code-block,
.mapdr-section-full .ct-code-block>div,
.mapdr-section-full .oxygen-code-block {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.mapdr-section-full {
  min-height: 0 !important;
  position: relative !important;
  top: 0 !important;
  transform: none !important;
}

/* =========================================================
   OUTER PAGE LAYOUT: APP 80% + SPONSORS 20%
   ========================================================= */

.zd-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(180px, 2fr);
  gap: var(--zd-gap);
  width: 100%;
  height: 100vh;
  max-width: none;
  margin: 0 !important;
  padding: var(--zd-top-space) var(--zd-side-space) !important;
  box-sizing: border-box;
  overflow: hidden;
}

.zd-app-main,
.zd-project-sidebar,
.zd-map-section {
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.zd-map-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================================
   SHARED PANELS
   ========================================================= */

.zd-filter-panel,
.zd-sponsor-box,
.zd-selected-card,
.zd-results-panel {
  background: #ffffff;
  border: 1px solid var(--zd-border);
  border-radius: 24px;
  box-shadow: var(--zd-shadow);
  box-sizing: border-box;
}

.zd-panel-eyebrow,
.zd-sidebar-eyebrow {
  margin: 0 0 8px 0;
  color: var(--zd-violet-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   SEARCH + FILTER PANEL
   ========================================================= */

.zd-filter-panel {
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.zd-search-wrap {
  position: relative;
  width: 100%;
}

.zd-search-input {
  width: 100%;
  height: 58px;
  padding: 0 22px 0 54px;
  border: 1px solid rgba(29, 38, 53, 0.12);
  border-radius: 20px;
  background: #ffffff;
  color: var(--zd-text);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  box-shadow: var(--zd-shadow);
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.zd-search-input::placeholder {
  color: rgba(71, 85, 105, 0.58);
  text-transform: uppercase;
  font-weight: 400;
  opacity: 1;
}

.zd-search-input:focus {
  border-color: rgba(139, 92, 246, .42);
  box-shadow: 0 14px 36px rgba(139, 92, 246, .14);
}

.zd-search-submit-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zd-violet-dark);
  pointer-events: none;
  transform: translateY(-50%);
}

.zd-search-submit-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zd-filter-grid {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) repeat(4, minmax(112px, auto)) auto;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--zd-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--zd-shadow);
}

.zd-input,
.zd-select {
  width: 100%;
  min-height: 48px;
  padding: 10px 46px 10px 14px;
  border: 1px solid #d9dee8;
  border-radius: 14px;
  background-color: #ffffff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  outline: none;
  box-sizing: border-box;
}

.zd-input:focus,
.zd-select:focus {
  border-color: var(--zd-violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}

.zd-field {
  position: relative;
  min-width: 0;
}

.zd-field::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--zd-violet-dark);
  border-bottom: 2px solid var(--zd-violet-dark);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  z-index: 2;
}

.zd-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  cursor: pointer;
}

.zd-select::-ms-expand {
  display: none;
}


.zd-check {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid #d9dee8;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.zd-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--zd-violet-dark);
}

.zd-reset {
  min-height: 48px;
  padding: 10px 16px;
  border: solid 1px #d9dee8 !important;
  border-radius: 14px;
  background: #f1f5f9;
  color: #1f2937;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}


.zd-check span,
.zd-reset {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}

.zd-reset:hover {
  background: #e2e8f0;
}

/* =========================================================
   WORKSPACE: MAP 70% + RIGHT PANELS 30%
   ========================================================= */

.zd-workspace {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
  gap: 10px;
}

.zd-map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #1f2128;
  box-shadow: 0 12px 34px rgba(29, 38, 53, 0.18);
}

.zd-map {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.zd-map-watermark {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--zd-violet-dark) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.zd-map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-weight: 800;
  z-index: 1;
  pointer-events: none;
}

.zd-map:not(:empty)+.zd-map-loading,
.zd-map.is-loaded+.zd-map-loading {
  display: none;
}

/* =========================================================
   SELECTED DOCTOR + RESULTS PANELS
   ========================================================= */

.zd-side-panels {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(230px, .9fr) minmax(260px, 1.1fr);
  gap: 10px;
}

.zd-selected-card,
.zd-results-panel {
  min-height: 0;
  overflow: hidden;
  padding: 20px;
}

.zd-placeholder-card h2,
.zd-results-header h2,
.zd-selected-card h2 {
  margin: 0;
  color: var(--zd-text);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.zd-placeholder-card p,
.zd-selected-subtitle,
.zd-sidebar-text,
.zd-status {
  color: var(--zd-muted);
}

.zd-placeholder-card p {
  margin: 10px 0 0;
  line-height: 1.5;
  font-size: 15px;
}

.zd-selected-inner {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.zd-selected-card-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.zd-selected-subtitle {
  margin: 7px 0 0;
  font-size: 15px;
}

.zd-selected-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.zd-selected-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}

.zd-info-tile {
  padding: 12px;
  border: 1px solid var(--zd-border);
  border-radius: 14px;
  background: var(--zd-soft);
}

.zd-info-tile span {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zd-info-tile strong {
  color: var(--zd-text);
  font-size: 14px;
}

.zd-selected-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.zd-button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--zd-violet-dark);
  color: #ffffff !important;
  font-weight: 900;
  text-decoration: none !important;
}

.zd-results-panel {
  display: flex;
  flex-direction: column;
}

.zd-results-header {
  flex: 0 0 auto;
  margin-bottom: 14px;
}

.zd-results-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.zd-result-item {
  width: 100%;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(29, 38, 53, 0.08);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.zd-result-item:hover .zd-result-name,
.zd-result-item:focus .zd-result-name {
  color: var(--zd-violet-dark);
}

.zd-result-mini-pin {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

.zd-result-mini-pin.zd-result-koncesija {
  background: var(--zd-violet);
}

.zd-result-mini-pin.zd-result-ne-koncesija {
  background: var(--zd-teal);
}

.zd-result-name {
  display: block;
  color: var(--zd-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.zd-result-wait {
  display: block;
  margin-top: 3px;
  color: var(--zd-muted);
  font-size: 13px;
  font-weight: 700;
}

.zd-status {
  flex: 0 0 auto;
  margin: 10px 0 0;
  font-size: 13px;
}

/* =========================================================
   BADGES + MAP PINS
   ========================================================= */

.zd-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.zd-badge-koncesija {
  background: rgba(139, 92, 246, 0.12);
  color: var(--zd-violet-dark);
}

.zd-badge-ne-koncesija {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.zd-map-pin {
  width: 38px;
  height: 38px;
  transform: translateY(-18px) rotate(-45deg);
  border: 1px solid #ffffff;
  border-radius: 999px 999px 999px 4px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: 0;
  line-height: 1;
  font: inherit;
}

.zd-map-pin {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.zd-map-pin::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.zd-map-pin span {
  display: none;
  transform: rotate(45deg);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.zd-map-pin-koncesija {
  background: var(--zd-violet);
}

.zd-map-pin-ne-koncesija,
.zd-map-pin-brez-koncesije {
  background: var(--zd-teal);
}

.zd-map-pin:hover,
.zd-map-pin:focus {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.36), 0 0 0 4px rgba(139, 92, 246, 0.18);
}

/* =========================================================
   RIGHT SPONSOR SIDEBAR
   ========================================================= */

.zd-project-sidebar {
  min-width: 0;
}

.zd-sponsor-box {
  height: 100%;
  padding: 24px;
  overflow: auto;
}

.zd-sponsor-box h2 {
  margin: 0 0 12px;
  color: var(--zd-text);
  font-size: 24px;
  line-height: 1.18;
}

.zd-sidebar-text {
  margin: 0 0 20px;
  line-height: 1.5;
  font-size: 15px;
}

.zd-sponsor-logos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.zd-sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 18px;
  border: 1px solid var(--zd-border);
  border-radius: 18px;
  background: var(--zd-soft);
  color: #64748b;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.zd-sponsor-logo img {
  display: block;
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.zd-sponsor-cta {
  padding: 18px;
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.08);
}

.zd-sponsor-cta h3 {
  margin: 0 0 8px;
  color: var(--zd-text);
  font-size: 18px;
}

.zd-sponsor-cta p {
  margin: 0 0 14px;
  color: var(--zd-muted);
  line-height: 1.45;
  font-size: 14px;
}

.zd-sponsor-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--zd-violet-dark);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
  .zd-page-shell {
    grid-template-columns: minmax(0, 8fr) minmax(180px, 2fr);
  }

  .zd-workspace {
    grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
  }

  .zd-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zd-regija {
    display: none !important;
  }

  .zd-regija::after {
    display: none !important;
  }

  .zd-filter-grid {

    grid-template-columns: 1fr 1fr !important;

  }

  .zd-field,

  .zd-search-wrap,

  .zd-reset {

    grid-column: 1 / -1;

  }

  .zd-check-odrasli {

    grid-column: 1;

  }

  .zd-check-otroci {

    grid-column: 2;

  }

  .zd-check-odrasli,

  .zd-check-otroci {

    width: 100%;

    justify-content: left !important;

    justify-items: left !important;

  }

  .zd-filter-grid {

    display: grid !important;

    grid-template-columns: 1fr 1fr !important;

    gap: 8px;

  }

  .zd-check {
    text-align: left !important;
  }

  .zd-check-koncesija,

  .zd-check-samoplacnisko {

    grid-column: auto !important;

    width: auto !important;

    min-width: 0 !important;

  }
}

@media (max-width: 991px) {
  :root {
    --zd-side-space: 20px;
    --zd-top-space: 20px;
  }

  .zd-page-shell {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    grid-template-columns: 1fr;
  }

  .zd-workspace {
    grid-template-columns: 1fr;
  }

  .zd-map-wrap {

    height: 420px !important;

    min-height: 420px !important;

    aspect-ratio: auto !important;

  }

  .zd-map {

    height: 420px !important;

  }

  .zd-side-panels {
    grid-template-rows: auto auto;
  }

  .zd-selected-card,
  .zd-results-panel,
  .zd-sponsor-box {
    overflow: visible;
  }

  .zd-results-panel {

    height: 350px !important;

    min-height: 350px !important;

    max-height: 350px !important;

    overflow: hidden !important;

  }

  .zd-results-list {

    height: calc(350px - 50px) !important;

    max-height: calc(350px - 50px) !important;

    overflow-y: auto !important;

    -webkit-overflow-scrolling: touch;

  }

}

@media (max-width: 640px) {
  :root {
    --zd-side-space: 14px;
    --zd-top-space: 14px;
  }

  .zd-page-shell {
    gap: 18px;
  }

  .zd-filter-grid {
    grid-template-columns: 1fr;
  }

  .zd-map-wrap {

    height: 330px !important;

    min-height: 330px !important;

    border-radius: 18px;

  }

  .zd-map {

    height: 330px !important;

  }

  .zd-selected-card,
  .zd-results-panel,
  .zd-sponsor-box {
    padding: 10px;
    border-radius: 18px;
  }
}

/* Globalno odstrani radius */

/*.zd-page-shell *,
.zd-page-shell *::before,
.zd-page-shell *::after {
    border-radius: 0 !important;
}
*/
/* Watermark ostane */
/*
.zd-map-watermark {
    border-radius: 999px !important;
}
*/

/* =========================================================
   V22 - REZULTATI ISKANJA: CLEAN LIST
   ========================================================= */

.zd-results-panel .zd-panel-eyebrow {
  color: var(--zd-violet) !important;
}

#zd-results-title,
.zd-status {
  display: none !important;
}

.zd-results-header {
  margin-bottom: 10px !important;
}

.zd-result-item {
  grid-template-columns: 21px minmax(0, 1fr) auto !important;
  gap: 10px !important;
  padding: 10px 0 !important;
  font-weight: 400 !important;
}

.zd-result-mini-pin {
  width: 25px !important;
  height: 25px !important;
  min-width: 21px !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14) !important;
}

.zd-result-name {
  display: block !important;
  color: #334155 !important;

  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.zd-result-wait {
  display: block !important;
  margin-top: 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.zd-result-wait.zd-result-koncesija {
  color: var(--zd-violet) !important;
}

.zd-result-wait.zd-result-ne-koncesija {
  color: var(--zd-teal) !important;
}


/* =========================================================
   V26 - IZBRANI ZDRAVNIK + SPONZOR CTA
   ========================================================= */

/* Izbrani zdravnik uporablja isti vizualni sistem kot Rezultati iskanja */
.zd-selected-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid var(--zd-border) !important;
  box-shadow: var(--zd-shadow) !important;
  padding: 20px !important;
  overflow: hidden !important;
}

.zd-selected-card .zd-panel-eyebrow,
.zd-selected-eyebrow {
  margin: 0 0 10px 0 !important;
  color: var(--zd-violet) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.zd-placeholder-card {
  height: 100% !important;
  min-height: 0 !important;
}

.zd-placeholder-card p {
  margin: 0 !important;
  color: var(--zd-muted) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

.zd-selected-inner {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.zd-selected-card-header {
  display: flex !important;
  justify-content: space-between !important;
  gap: 10px !important;
  align-items: flex-start !important;
  margin: 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--zd-border) !important;
}

.zd-selected-title-wrap {
  min-width: 0 !important;
}

.zd-selected-card h2 {
  margin: 0 !important;
  color: #334155 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.zd-selected-subtitle {
  margin: 4px 0 0 !important;
  color: var(--zd-muted) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}

.zd-selected-close {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border: 1px solid var(--zd-border) !important;
  background: #ffffff !important;
  color: var(--zd-muted) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.zd-badge {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  margin: 0 0 8px 0 !important;
  padding: 4px 7px !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.zd-badge-koncesija {
  background: var(--zd-violet) !important;
}

.zd-badge-ne-koncesija {
  background: var(--zd-teal) !important;
}

.zd-selected-grid {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: auto !important;
  padding: 0 !important;
}

.zd-info-tile {
  display: grid !important;
  grid-template-columns: minmax(72px, 36%) minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start !important;
  padding: 10px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--zd-border) !important;
  background: transparent !important;
}

.zd-info-tile:last-child {
  border-bottom: 0 !important;
}

.zd-info-tile span {
  margin: 0 !important;
  color: var(--zd-violet) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.zd-info-tile strong {
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  word-break: break-word !important;
}

.zd-selected-actions,
.zd-button-link {
  display: none !important;
}

/* Gumb v sidebarju ni več bold */
.zd-sponsor-cta a {
  font-weight: 400 !important;
  font-size: 14px;
}

/* pin izbranega 
.zd-map-pin-active {
  border: 4px solid #ff00ff !important;
  transform: scale(1.15);
  z-index: 9999 !important;
  box-shadow:
    0 0 0 4px rgba(255,0,255,.20),
    0 8px 24px rgba(0,0,0,.30);
}*/
.zd-map-pin,
.zd-map-pin-koncesija,
.zd-map-pin-ne-koncesija {
  box-shadow: none !important;
  filter: none !important;
}

.zd-logo-abbvie {
  padding: 25px;
}

.zd-logo-abbvie img {
  max-height: 42px;
}

.zd-logo-rilastil img {
  max-height: 100px;
}

.zd-logo-norsan img {
  max-height: 65px;
}

.zd-logo-ippn img {
  max-height: 90px;
}

.zd-logo-dad img {
  max-height: 100px;
}

/* =========================================================
   FILTER TYPE BUTTONS: KONCESIONARJI + SAMOPLAČNIKI
   ========================================================= */

.zd-check-koncesija,
.zd-check-samoplacnisko {
  border-width: 1px;
  font-weight: 400 !important;
}

.zd-check-koncesija {
  border-color: rgba(139, 92, 246, 0.45) !important;
  background: rgba(139, 92, 246, 0.08) !important;
  color: var(--zd-violet-dark) !important;
}

.zd-check-samoplacnisko {
  border-color: rgba(20, 184, 166, 0.45) !important;
  background: rgba(20, 184, 166, 0.08) !important;
  color: #0f766e !important;
}

.zd-check-koncesija input {
  accent-color: var(--zd-violet-dark) !important;
}

.zd-check-samoplacnisko input {
  accent-color: var(--zd-teal) !important;
}

.zd-check-koncesija span,
.zd-check-samoplacnisko span {
  font-weight: 400 !important;
}

.zd-check-koncesija:has(input:not(:checked)),
.zd-check-samoplacnisko:has(input:not(:checked)) {
  background: #ffffff !important;
  border-color: #d9dee8 !important;
  color: #1f2937 !important;
}

.zd-map-pin {
  position: relative;

  width: 20px;
  height: 20px;

  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(1.20);

  border: 2px solid #fff;
  box-shadow: none !important;
}

.zd-map-pin::after {
  content: "";
  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;
  background: #fff;

  top: 5px;
  left: 5px;
}

.zd-map-pin-koncesija {
  background: #7c3aed;
}

.zd-map-pin-ne-koncesija {
  background: #14b8a6;
}

.zd-map-pin-active {
  border: 1px solid #ff6347 !important;
  transform: rotate(-45deg) scale(1.35) !important;
  z-index: 99999 !important;
  box-shadow: none !important;
  background: #ff6347;
}

.zd-map-pin-active::after {
  content: "";
  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;
  background: #fff;

  top: 6px;
  left: 6px;
}

/* =========================================================
   V34 - FILTRA: ODRASLI + OTROCI
   ========================================================= */

.zd-check-odrasli,
.zd-check-otroci {
  border-color: #d9dee8 !important;
  background: #ffffff !important;
  color: #1f2937 !important;
  font-weight: 400 !important;
}

.zd-check-odrasli input,
.zd-check-otroci input {
  /*accent-color: var(--zd-violet-dark) !important;*/
  accent-color: dimgray !important;
}

.zd-check-odrasli span,
.zd-check-otroci span {
  font-weight: 400 !important;
  text-transform: uppercase !important;
}

/*
.zd-check-odrasli:has(input:checked),
.zd-check-otroci:has(input:checked) {
  border-color: rgba(139, 92, 246, 0.35) !important;
  background: rgba(139, 92, 246, 0.06) !important;
  color: var(--zd-violet-dark) !important;
}
*/