@charset "utf-8";
/* CSS Document */

/* ================================
   Ausstellerverzeichnis – Standalone
   ================================ */

/* Rahmen um jeden Eintrag */
.ausver {
  border: medium lightgrey solid;
  border-radius: 1em;
  box-shadow: 0.1rem 0.1rem 0.1rem grey;
  padding: 0 8px 18px 15px;
  margin-bottom: 20px;
}

/* Desktop: Einträge schmaler */
@media (min-width: 992px) {
  .ausver {
    width: 100%;
  }
}

/* Standnummer Ausrichtung */
@media (max-width: 768px) {
  .standnr { text-align: left; }
}
@media (min-width: 769px) {
  .standnr { text-align: right; }
}

/* Logo */
.logover {
  max-width: 120px;
  max-height: 80px;
  padding-bottom: 5px;
}

/* Zusatztext Basis */
.zusatztext {
  font-size: 0.7rem;
  margin-top: 7px;
  padding-top: 2px;
}

.zusatztext p {
  padding-top: 5px;
}

/* Desktop-Zusatztext Linie */
@media (min-width: 768px) {
  .zusatztextgross {
    border-top: thin solid #4267BE;
  }
}

/* Desktop sichtbar / Mobil versteckt */
@media (max-width: 767.99px) {
  .zusatztextgross {
    visibility: hidden;
    height: 0px;
  }
}

/* Mobil sichtbar / Desktop versteckt */
@media (min-width: 769px) {
  .zusatztextklein {
    visibility: hidden;
    height: 0px;
  }
}

/* Mobile Panel */
.zusatztextpanel {
  background-color: lightgreen;
}

/* Accordion Icon */
.icon-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #4267BE;
}

/* Rotation bei geöffnetem Accordion */
.accordion-panel-title[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}



.az-count{
  font-size: .9rem;
  opacity: .85;
  white-space: nowrap;
}


/* A–Z Tabs: Farben zentral ändern */
  :root{
    --az-tab-bg: forestgreen;
    --az-tab-bg-hover: mediumseagreen;
    --az-tab-active: lawngreen;
    --az-tab-text: #ffffff;
    --az-tab-active-text: darkgreen;
    --az-tab-border: rgba(0,0,0,0.15);
  }
  
  .az-tab-btn{
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.az-tab-btn.is-active{
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}
  
  .az-toolbar{ margin: 0 0 14px; }
  .az-tabs{ display:flex; flex-wrap:wrap; gap:2px;}
  .az-tab-btn{
    border: 1px solid var(--az-tab-border);
    background: var(--az-tab-bg);
    color: var(--az-tab-text);
    padding: 8px 10px;
    font-weight: 700;
    line-height: 1;
    min-width: 42px;
    border-radius: 6px;
  }
.az-tab-btn:hover{ background: var(--az-tab-bg-hover); }
.az-tab-btn.is-active{
  background: var(--az-tab-active);
  border-color: var(--az-tab-active);
  color: var(--az-tab-active-text);
}
.az-tab-btn.is-hidden{ display:none !important; }
.az-item.is-hidden{ display:none !important; }


  /* für Übersicht */
  .exh-card{
    height: 100%;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform .15s ease, box-shadow .15s ease;
    overflow: hidden;
    background: #fff;
  }
  .exh-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  }
.exh-logo{
  height: 80px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px 20px 8px;   /* mehr Abstand seitlich */
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0));
}
.exh-logo img{
  max-height: 60px;         /* kleiner */
  max-width: 80%;
  object-fit: contain;
}
.exh-name{
    padding: 8px 12px 12px;
    font-weight: 600;
    line-height: 1.25;
    font-size: 0.96rem;
  	text-align: center;
  	min-height: 48px;   /* sorgt für gleichmäßige Kartenhöhe */
	letter-spacing: .2px;
  }
  .exh-link{
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    height: 100%;
  }

/* --- Stabiler 2-Spalten-Layout-Fix für .ausver (unabhängig vom Theme/Bootstrap) --- */
.row.ausver{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;   /* verhindert Theme-Row-Margen-Probleme */
  margin-right: 0;
}

.row.ausver > [class*="col-"]{
  flex: 0 0 auto;
  max-width: 100%;
}

/* Mobile: beide untereinander */
.row.ausver > .col-lg-8,
.row.ausver > .col-md-8,
.row.ausver > .col-sm-12,
.row.ausver > .col-lg-4,
.row.ausver > .col-md-4{
  width: 100%;
}

/* Ab md: 8/4 Spalten */
@media (min-width: 768px){
  .row.ausver > .col-lg-8,
  .row.ausver > .col-md-8{ width: 66.6667%; }

  .row.ausver > .col-lg-4,
  .row.ausver > .col-md-4{ width: 33.3333%; }
}


/* Fix: Cards sollen IMMER volle Layout-Breite haben (auch wenn Parent flex ist) */
.az-item{
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.az-item > .ausver,
.az-item .ausver{
  width: 100% !important;
  max-width: 100% !important;
}


.az-search-wrap{
  min-width: min(360px, 100%);
}

/* Fallback für alte Bootstrap-Versionen (statt visually-hidden) */
.az-visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Lupe ohne Rahmen/Button-Optik */
.az-search-addon{
  background: transparent !important;
  border: 0 !important;
  padding: 0 5px 0 10px !important;   /* links etwas Luft */
  box-shadow: none !important;
}

/* SVG hübsch im Feld */
.az-search-svg{
  width: 18px;
  height: 18px;
  opacity: .65;
  fill: currentColor;
}

/* Input: Platz für die Lupe schaffen */
.az-search-wrap .form-control{
  padding-left: 12px;  /* damit Text nicht über die Lupe läuft */
}

/* Aussteller-Liste */
.aussteller-suche {
  position: relative;
  width: 100%;
}
.aussteller-suche input {
  width: 100%;
  padding: 6px 30px 6px 30px; /* links + rechts Platz */
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}
.aussteller-suche-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  display: flex;
  align-items: center;
}
#aussteller-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  display: none;
  padding: 0;
}
#aussteller-clear:hover {
  color: #333;
}
#aussteller-clear {
  display: none;
}
#aussteller-clear.show {
  display: block;
}