/* Wartung - index.html */
.maintenance-box {
  max-width: 500px;
  margin: 80px auto 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px #007acc22,0 1.5px 8px #0001;
  padding: 2.5em 2em 2em 2em;
}
.maintenance-box h1 {
  font-size: 3.2rem;
  color: #007acc;
  margin-bottom: 0.5rem;
}
.maintenance-box p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}
.maintenance-box a {
  display: inline-block;
  background: #007acc;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.maintenance-box a:hover {
  background: #005b99;
}

/* Shop - index.html */
.simpleCart_items { margin: 2em 0; }
.simpleCart_item { border-bottom: 1px solid #e0e6ed; padding: 1em 0; display: flex; align-items: center; gap: 2em; }
.simpleCart_item img { width: 80px; border-radius: 8px; }
.simpleCart_total, .simpleCart_checkout { font-size: 1.1em; margin-top: 1em; }
.simpleCart_checkout { background: #1565c0; color: #fff; border: none; border-radius: 6px; padding: 0.7em 1.5em; cursor: pointer; }
.simpleCart_checkout:hover { background: #003c7e; }
.shop-product { border: 1px solid #e0e6ed; border-radius: 10px; padding: 1.5em; margin-bottom: 2em; background: #fff; max-width: 400px; }
.shop-product img { width: 100%; max-width: 180px; border-radius: 8px; margin-bottom: 1em; }
.shop-product button { background: #1565c0; color: #fff; border: none; border-radius: 6px; padding: 0.6em 1.2em; cursor: pointer; font-size: 1em; }
.shop-product button:hover { background: #003c7e; }
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5em;
}
.shop-product-card {
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.shop-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.shop-product-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #f8fafd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 2.2em;
}
.shop-product-content {
  padding: 1em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.shop-product-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.3em;
  color: #333;
}

/* Profil - index.html */
.orders-list.professional {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2em 2.2em;
  margin-top: 1.5em;
  align-items: stretch;
}
.order-card-user {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px #003c7e0c, 0 1.5px 8px #0001;
  border: 1px solid #e0e6ed;
  padding: 1.5em 1.7em 1.2em 1.7em;
  min-width: 0;
  transition: box-shadow 0.18s, border 0.18s, transform 0.13s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.order-card-user:hover {
  box-shadow: 0 8px 32px #007acc22, 0 2.5px 12px #0002;
  border: 1.5px solid #b6e0fe;
  transform: translateY(-2px) scale(1.012);
}
.order-date {
  color: #1565c0;
  font-weight: 500;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.order-status {
  font-weight: 400;
  padding: 0.11em 0.7em;
  border-radius: 7px;
  background: #f7f7f7;
}

/* Ausgelagerte Inline-Styles aus wartung/index.html */
.hr-spacer {
  margin: 2em 0;
  opacity: 0.2;
}
.btn-admin {
  padding: 0.7em 1.5em;
  font-size: 1.1em;
}
#adminLoginModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 100000;
  align-items: center;
  justify-content: center;
}
#adminLoginModal.flex {
  display: flex;
}
#adminLoginForm {
  background: #fff;
  padding: 2em 2em 1.5em 2em;
  border-radius: 10px;
  box-shadow: 0 2px 16px #0002;
  max-width: 320px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.admin-login-title {
  margin: 0 0 0.5em 0;
  font-size: 1.3em;
}
.input-lg {
  padding: 0.6em;
  font-size: 1em;
}
.btn-login {
  padding: 0.6em;
  font-size: 1em;
}
.btn-cancel {
  background: #eee;
  padding: 0.6em;
  font-size: 1em;
}
.admin-error {
  color: #b30000;
  font-size: 0.98em;
}

/* Ausgelagerte Inline-Styles aus profil/index.html */
.profile-info-box {
  background: #fff;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-danger {
  background-color: #e74c3c;
  color: white;
}
.modal-hidden {
  display: none;
}
.delete-error {
  color: red;
  margin-top: 8px;
  min-height: 18px;
}

/* Ausgelagerte Inline-Styles aus shop/index.html und shop/bestellungen.html */
.main-centered {
  max-width: 700px;
  margin: 2em auto;
}
.margin-top-lg {
  margin-top: 1em;
}
.margin-top-xl {
  margin-top: 1.5em;
}

/* Ausgelagerte Inline-Styles aus shared/new-password.html */
.content-box-pw {
  max-width: 420px;
  margin: 70px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border: 1px solid #e0e6ed;
  padding: 2.2rem 2.2rem 1.5rem 2.2rem;
  background: #f8fbff;
}
.pw-title {
  font-size: 2rem;
  color: #005f99;
  margin-bottom: 1.2rem;
  text-align: center;
}
.input-margin-bottom {
  margin-bottom: 1.1rem;
}
.btn-block {
  width: 100%;
  margin-bottom: 0.7rem;
}
.status-centered {
  margin-top: 1rem;
  min-height: 22px;
  text-align: center;
}
.success-box {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.2rem 1rem;
  background: #e6fbe6;
  border: 1.5px solid #7ed97e;
  border-radius: 10px;
  color: #217a21;
  font-size: 1.08rem;
}
.success-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.link-blue {
  color: #005f99;
  text-decoration: underline;
}

/* Ausgelagerte Inline-Styles aus ueber/index.html */
.gtm-noscript {
  display: none;
  visibility: hidden;
}
