/* Layout */
.sidebar {
  min-height: 100vh;
}

.bg-dark-red {
  background-color: #8E425F !important;
}

.main-bg {
  background-color: #f3f4f7;
  min-height: 100vh;
}

/* Sidebar links */
.sidebar-link {
  color: #f8f3ef;
  padding: 8px 0;
  display: block;
  border-radius: 4px;
}

.sidebar-link:hover {
  background-color: #5e2626;
  color: #ffffff;
}

.sidebar-link.active {
  background-color: #7b2f2f;
  color: #ffffff;
  font-weight: bold;
}
/* --- Silné, nezaměnitelné styly pro horní panel --- */

header.top-hero {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* ← doleva */
  width: 100% !important;
  height: 12.5vh !important;
  min-height: 64px !important;
  background-color: #936F7D !important; /* požadovaná barva */
  color: #ffffff !important;

  /* zrušení verzálek */
  text-transform: none !important;
  letter-spacing: normal !important;

  box-shadow: 0 2px 4px rgba(0,0,0,0.08) !important;
  position: relative !important;
  z-index: 1030 !important;
}

/* Nadpis jako odkaz */
header.top-hero a.hero-title,
header.top-hero .hero-title {
  display: inline-block !important;
  font-size: clamp(1.6rem, 4vw, 2.4rem) !important; /* větší písmo */
  font-weight: 700 !important;
  margin: 0 !important;

  /* zarovnání s obsahem stránky */
  padding-left: 1.5rem !important;

  text-decoration: none !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
}
/* Hover efekt pro odkaz */
header.top-hero a.hero-title:hover {
  text-decoration: underline !important;
  opacity: 0.95 !important;
}

/* Pokud by nějaký rodič měl overflow:hidden a ořezával header, toto pravidlo vylepší zobrazení */
body, html {
  min-height: 100% !important;
}
