@media (max-width: 900px) {
  header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 4000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }
  .header-flex {
    min-height: 64px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 0 1em;
    background: transparent;
    z-index: 4100;
  }
  main,
  #content {
    margin-top: 80px !important;
  }
  .hamburger {
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translateY(-50%);
    z-index: 4200;
    background: none;
    color: #222;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: 44px;
    height: 44px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
  }
  .hamburger:active,
  .hamburger:focus {
    background: rgba(0, 0, 0, 0.04);
  }
  .hamburger .bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 3px 0;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s;
  }
}
/* Sichtbare, große Menülinks für mobile Navigation */
#menu a.menu-link,
#menu a.menu-parent,
#menu a.menu-sub {
  display: block;
  width: 100%;
  padding: 1em 0;
  text-align: center;
  font-size: 1.3em;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  background: none;
  transition: background 0.2s, color 0.2s;
}
#menu a.menu-link:active,
#menu a.menu-link:focus,
#menu a.menu-parent:active,
#menu a.menu-parent:focus,
#menu a.menu-sub:active,
#menu a.menu-sub:focus {
  background: #f3f3f3;
  color: var(--primary, #2a6b6b);
}
@media (max-width: 600px) {
  .header-flex {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    position: relative;
  }
  #menu-toggle {
    order: 0;
    margin-left: 0;
    margin-right: 0.7em;
    position: static;
    z-index: 1201;
    display: flex !important;
    align-items: center;
    background: none;
    border: none;
  }
  h1 {
    order: 1;
    margin-left: auto;
    margin-right: 0;
    font-size: 1.1em;
    gap: 0.4em;
  }
}
@media (max-width: 600px) {
  .header-flex {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5em;
    position: relative;
  }
  #menu-toggle {
    order: 1;
    margin-left: 0;
    margin-right: auto;
    position: static;
    z-index: 1201;
  }
  h1 {
    order: 2;
    margin-left: auto;
    margin-right: 0;
    font-size: 1.1em;
    gap: 0.4em;
  }
}
/* --- Fixierte Buttons für Admin und Warenkorb --- */
.floating-btns {
  position: fixed;
  bottom: 2em;
  right: 2em;
  display: flex;
  flex-direction: row;
  gap: 1em;
  z-index: 1300;
}
.floating-btns .admin-btn,
.floating-btns .cart-btn {
  box-shadow: var(--box-shadow);
  border-radius: 50%;
  width: 3em;
  height: 3em;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: static;
}
.floating-btns .cart-btn {
  background: white;
  color: var(--primary);
  border: none;
  transition: background 0.2s;
}
.floating-btns .cart-btn:hover {
  background: var(--accent);
  color: white;
}
.floating-btns .admin-btn {
  background: var(--primary);
  color: white;
  border: none;
  transition: background 0.2s;
}
.floating-btns .admin-btn:hover {
  background: var(--accent);
  color: white;
}

@media (max-width: 600px) {
  .floating-btns {
    bottom: 1em;
    right: 1em;
    gap: 0.7em;
  }
  .floating-btns .admin-btn,
  .floating-btns .cart-btn {
    width: 2.5em;
    height: 2.5em;
    font-size: 1.2em;
  }
}

/* Hamburger Menü */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1em;
  margin-right: 1em;
  z-index: 1201;
}
.hamburger .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
  }
  #menu-toggle {
    display: flex !important;
  }
}
/* Visueller Hinweis für klickbare Admin-Artikel */
.admin-item-view:hover {
  background: #f3f3f3;
  border-radius: 6px;
}
.admin-item-view .edit-hint {
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.admin-item-view:hover .edit-hint {
  color: var(--accent, #e67e22);
  opacity: 1;
}
/* --- Responsive Design für Menü und Website --- */
@media (max-width: 900px) {
  #menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 3000;
    box-shadow: none;
    border-radius: 0;
    padding: 4em 0 2em 0;
    align-items: center;
    justify-content: flex-start;
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  #menu.show {
    transform: translateY(0);
    display: flex;
  }
  #menu > div {
    display: block;
    margin: 1.2em 0;
    text-align: center;
    font-size: 1.3em;
    padding: 0.7em 2em;
    border-radius: 8px;
    background: none;
    transition: background 0.2s;
  }
  #menu > div:active,
  #menu > div:focus {
    background: #eee;
  }
  #menu .submenu {
    position: static;
    box-shadow: none;
    background: none;
    margin-top: 0.5em;
  }
  #logo,
  h1 {
    position: relative;
    z-index: 1100;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0.5em 1em;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
  #menu-toggle {
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 3200;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--primary, #333);
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  body,
  html {
    overflow-x: hidden;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 img {
    max-width: 120px;
    height: auto;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .product {
    min-width: 0;
    max-width: 100vw;
  }
}

/* --- Adminbereich Tabs --- */
.admin-tabs {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}
.admin-tab-btn {
  background: var(--primary, #eee);
  border: none;
  padding: 0.5em 1.2em;
  border-radius: 6px 6px 0 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-tab-btn.active,
.admin-tab-btn:focus {
  background: var(--accent, #ccc);
}
.admin-panel {
  min-width: 320px;
  max-width: 600px;
  width: 95vw;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 2em 1.5em 1.5em 1.5em;
  position: relative;
  z-index: 2000;
  min-height: 520px;
}
.admin-toggle-btn {
  background: #eee;
  color: var(--primary);
  border: none;
  border-radius: 0.5em;
  padding: 0.5em 1.2em;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 0.7em;
  margin-right: 0.7em;
  transition: background 0.2s;
}
.admin-toggle-btn:hover {
  background: var(--accent);
  color: white;
}
.hidden {
  display: none !important;
}
.product-desc-scroll {
  max-height: 80px;
  overflow-y: auto;
  margin-bottom: 0.5em;
  padding-right: 0.5em;
}
.admin-edit-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0.5em;
  align-items: center;
}
.admin-edit-form input,
.admin-edit-form select {
  font-size: 1em;
  padding: 0.2em 0.5em;
  border-radius: 0.3em;
  border: 1px solid #ccc;
}
.admin-edit-form button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.3em;
  padding: 0.3em 0.8em;
  cursor: pointer;
}
/* Admin-Panel */
.admin-btn {
  /* Stil wird jetzt über .floating-btns gesetzt */
  cursor: pointer;
}
.admin-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 1em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  min-width: 340px;
  max-width: 95vw;
  max-height: 90vh;
  padding: 2em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
}
.admin-panel.hidden {
  display: none;
}
#admin-items-list {
  margin-top: 1.5em;
  max-height: 250px;
  overflow-y: auto;
}
#admin-items-list ul {
  list-style: none;
  padding: 0;
}
#admin-items-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5em;
  gap: 1em;
}
#admin-items-list img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  margin-right: 0.5em;
}
#admin-items-list button {
  background: #eee;
  color: var(--text-dark);
  border: none;
  border-radius: 0.5em;
  padding: 0.3em 0.8em;
  font-size: 1em;
  cursor: pointer;
}

:root {
  --primary: #ff6f61;
  --accent: #ffab91;
  --bg-light: #fffdfc;
  --text-dark: #333;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --modal-bg: rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Segoe UI", "Open Sans", sans-serif;
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

header,
footer {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
  padding: 1.2em;
  box-shadow: var(--box-shadow);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1em;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-btn {
  /* Stil wird jetzt über .floating-btns gesetzt */
  position: relative;
  cursor: pointer;
}

#cart-count {
  font-size: 0.9em;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  padding: 0.1em 0.5em;
  position: absolute;
  top: -0.5em;
  right: -0.5em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.product {
  background: white;
  border-radius: 1em;
  box-shadow: var(--box-shadow);
  padding: 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.product img {
  width: 100%;
  max-width: 180px;
  max-height: 120px;
  object-fit: contain;
  background: #e0e4ed;
  border-radius: 10px;
  margin-bottom: 1em;
  box-shadow: 0 1px 6px rgba(60, 80, 120, 0.09);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.product h3 {
  margin: 0.5em 0 0.2em 0;
}
.product strong {
  color: var(--primary);
  font-size: 1.2em;
  margin: 0.5em 0;
}
.product button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5em;
  padding: 0.5em 1.2em;
  font-size: 1em;
  cursor: pointer;
  margin-top: 0.5em;
  transition: background 0.2s;
}
.product button:hover {
  background: var(--accent);
}

/* Warenkorb Modal */
.cart-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 1em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  min-width: 320px;
  max-width: 95vw;
  padding: 2em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cart-modal.hidden {
  display: none;
}
.cart-content h2 {
  margin-top: 0;
}
#cart-items {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  max-height: 250px;
  overflow-y: auto;
}
#cart-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7em;
}
.send-order-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5em;
  padding: 0.7em 1.5em;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 0.5em;
}
.close-cart-btn {
  background: #eee;
  color: var(--text-dark);
  border: none;
  border-radius: 0.5em;
  padding: 0.5em 1.2em;
  font-size: 1em;
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--modal-bg);
  z-index: 1000;
}
.overlay.hidden {
  display: none;
}

#menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
  position: absolute;
  left: 1em;
  top: 1.2em;
  color: white;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-light);
  padding: 1em 0;
  border-bottom: 1px solid #eee;
  box-shadow: var(--box-shadow);
  position: relative;
}

nav > div {
  position: relative;
  margin: 0 1em;
}

nav > div > span,
nav > div > a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  padding: 0.4em 0.8em;
  border-radius: 5px;
  transition: background 0.3s;
}

nav > div > span:hover,
nav > div > a:hover {
  background: var(--accent);
  color: white;
}

.submenu {
  display: none;
  position: absolute;
  top: 2.5em;
  left: 0;
  background: white;
  flex-direction: column;
  border: 1px solid var(--accent);
  box-shadow: var(--box-shadow);
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.submenu a {
  padding: 0.6em 1em;
  color: var(--primary);
  text-decoration: none;
  background: white;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.3s;
}

.submenu a:hover {
  background: var(--accent);
  color: white;
}

nav > div:hover .submenu,
nav > div:focus-within .submenu {
  display: flex;
}

main {
  padding: 2em;
  max-width: 1000px;
  margin: auto;
}

.product {
  background: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 2em;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.product img {
  width: 100%;
  max-width: 180px;
  max-height: 120px;
  object-fit: contain;
  background: #e0e4ed;
  border-radius: 10px;
  margin-bottom: 1em;
  box-shadow: 0 1px 6px rgba(60, 80, 120, 0.09);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product h3 {
  margin: 0.2em 0;
}

form label {
  display: block;
  margin-top: 0.5em;
}

input,
button {
  padding: 0.6em;
  margin-top: 0.3em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1em;
}

button {
  background: var(--primary);
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-top: 1em;
  transition: background 0.3s;
}

button:hover {
  background: var(--accent);
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    display: none;
  }

  nav.show {
    display: flex;
  }

  .submenu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border: none;
  }
}

/* Modernes Menü-Design */
#menu {
  display: flex;
  justify-content: center;
  gap: 2.5em;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1.5px 0 rgba(42, 107, 107, 0.08);
  border-radius: 18px;
  padding: 1.2em 2em;
  margin: 2em auto 2.5em auto;
  max-width: 800px;
  min-width: 320px;
  transition: box-shadow 0.2s, background 0.2s;
}
#menu > div {
  display: flex;
  align-items: center;
}
#menu a {
  color: #2a6b6b;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.15em;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
#menu a:hover {
  background: #e0f7f7;
  color: #1a4b4b;
}
@media (max-width: 900px) {
  #menu {
    flex-direction: column;
    gap: 1em;
    padding: 1em;
    max-width: 98vw;
  }
  #menu a {
    font-size: 1em;
    padding: 0.5em 1em;
  }
}

/* Modernisiertes Menü-Design, keine weißen Flächen */
#menu {
  background: linear-gradient(135deg, #e9ecf3 0%, #f6f7fa 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(60, 80, 120, 0.08);
  padding: 0.7em 0.5em;
  display: flex;
  gap: 0.5em;
  align-items: center;
}
#menu > div {
  margin: 0 0.2em;
}
#menu a {
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 12px;
  background: #f3f5f8;
  color: #2a3550;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 8px rgba(60, 80, 120, 0.07);
}
#menu a:hover,
#menu a:focus {
  background: #dbe2ee;
  color: #1a2238;
  box-shadow: 0 4px 18px rgba(60, 80, 120, 0.13);
}
#menu .submenu {
  position: absolute;
  background: #e9ecf3;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(60, 80, 120, 0.09);
  padding: 0.5em 0.3em;
  margin-top: 0.3em;
  z-index: 10;
  min-width: 160px;
}
#menu .submenu a {
  display: block;
  padding: 0.5em 1em;
  background: none;
  color: #2a3550;
  border-radius: 8px;
  box-shadow: none;
}
#menu .submenu a:hover {
  background: #dbe2ee;
  color: #1a2238;
}
@media (max-width: 900px) {
  #menu {
    flex-direction: column;
    gap: 0.2em;
    padding: 1em 0.3em;
  }
  #menu > div {
    width: 100%;
  }
  #menu a {
    width: 100%;
    text-align: left;
  }
}

/* --- Adminbereich Tabs --- */
.admin-tabs {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}
.admin-tab-btn {
  background: var(--primary, #eee);
  border: none;
  padding: 0.5em 1.2em;
  border-radius: 6px 6px 0 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-tab-btn.active,
.admin-tab-btn:focus {
  background: var(--accent, #ccc);
}
.admin-panel {
  min-width: 320px;
  max-width: 600px;
  width: 95vw;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 2em 1.5em 1.5em 1.5em;
  position: relative;
  z-index: 2000;
  min-height: 520px;
}
.admin-toggle-btn {
  background: #eee;
  color: var(--primary);
  border: none;
  border-radius: 0.5em;
  padding: 0.5em 1.2em;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 0.7em;
  margin-right: 0.7em;
  transition: background 0.2s;
}
.admin-toggle-btn:hover {
  background: var(--accent);
  color: white;
}
.hidden {
  display: none !important;
}
.product-desc-scroll {
  max-height: 80px;
  overflow-y: auto;
  margin-bottom: 0.5em;
  padding-right: 0.5em;
}
.admin-edit-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0.5em;
  align-items: center;
}
.admin-edit-form input,
.admin-edit-form select {
  font-size: 1em;
  padding: 0.2em 0.5em;
  border-radius: 0.3em;
  border: 1px solid #ccc;
}
.admin-edit-form button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.3em;
  padding: 0.3em 0.8em;
  cursor: pointer;
}
/* Admin-Panel */
.admin-btn {
  /* Stil wird jetzt über .floating-btns gesetzt */
  cursor: pointer;
}
.admin-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 1em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  min-width: 340px;
  max-width: 95vw;
  max-height: 90vh;
  padding: 2em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
}
.admin-panel.hidden {
  display: none;
}
#admin-items-list {
  margin-top: 1.5em;
  max-height: 250px;
  overflow-y: auto;
}
#admin-items-list ul {
  list-style: none;
  padding: 0;
}
#admin-items-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5em;
  gap: 1em;
}
#admin-items-list img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  margin-right: 0.5em;
}
#admin-items-list button {
  background: #eee;
  color: var(--text-dark);
  border: none;
  border-radius: 0.5em;
  padding: 0.3em 0.8em;
  font-size: 1em;
  cursor: pointer;
}

/* Blog-Bilder: nicht abschneiden, sondern einpassen */
.blog-tile img {
  width: 100%;
  max-width: 220px;
  max-height: 140px;
  object-fit: contain;
  background: #e0e4ed;
  border-radius: 10px;
  margin-bottom: 1em;
  box-shadow: 0 1px 6px rgba(60, 80, 120, 0.09);
}

/* Blog-Grid wieder nebeneinander und responsiv */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  padding: 2em 1em;
  background: linear-gradient(135deg, #f6f7fa 0%, #e9ecf3 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(60, 80, 120, 0.08);
}

/* Admin Login Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 1em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  min-width: 320px;
  max-width: 95vw;
  padding: 2em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.modal.hidden {
  display: none;
}
.modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.close-modal-btn {
  background: #eee;
  color: var(--text-dark);
  border: none;
  border-radius: 0.5em;
  padding: 0.5em 1.2em;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1em;
}
#admin-login-frame {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 0.5em;
  margin-bottom: 1em;
}
/* Overlay bleibt darunter */
.overlay {
  z-index: 1000;
}
