/* Reset und Basis-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Archivo Black Font Integration */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Black", sans-serif !important;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
}

/* Global Archivo Font für alle anderen Texte */
body,
p,
span,
div,
a,
li,
td,
th,
label,
input,
textarea,
select,
button {
  font-family: "Archivo", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
}

/* Spezielle Elemente mit Archivo Black */
.navbar,
.nav-link,
.btn,
.hero-title,
.hero-highlight,
.section-header h2,
.booking-section-title,
.feature-card h3,
.admin-header h1,
.admin-header h2,
.modal-content h3,
.footer-section h4,
.logo-text,
.brand-text {
  font-family: "Archivo Black", sans-serif !important;
  font-weight: 400;
  font-style: italic;
}

/* Archivo Black für spezielle UI-Elemente */
.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Archivo variable font Klasse */
.archivo-italic-bold {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  font-variation-settings: "wdth" 100;
}

/* Archivo regular für Fließtext */
.archivo-regular {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 5px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.4);
}

.btn-outline {
  background-color: #ffffffeb;
  color: #2e68b0;
  border: 2px solid #2e68b0;
}

.btn-outline:hover {
  background-color: #2e68b0;
  color: white;
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  margin: 2px;
}

/* Form Styles */
.booking-form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.form-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  border-left: 6px solid #2e68b0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.form-section h4 {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-section h4::before {
  content: "🔧";
  font-size: 1.2rem;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  padding: 8px;
  border-radius: 50%;
  filter: grayscale(100%);
}

.form-section h5 {
  margin: 1rem 0 1rem 0;
  color: #495057;
  font-size: 1rem;
  font-weight: 600;
}

.input-group small {
  display: block;
  margin-top: 0.25rem;
  color: #6c757d;
  font-size: 0.85rem;
  font-style: italic;
}

/* Saisonale Preise */
.saisonale-preise {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  border: 2px dashed #2e68b0;
}

.preise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.preise-grid .input-group {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #2e68b0;
}

.preise-grid .input-group label {
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Saison-spezifische Farben */
.preise-grid .input-group:nth-child(1) {
  border-left-color: #28a745;
} /* Frühling - Grün */
.preise-grid .input-group:nth-child(2) {
  border-left-color: #ffc107;
} /* Sommer - Gelb */
.preise-grid .input-group:nth-child(3) {
  border-left-color: #fd7e14;
} /* Herbst - Orange */
.preise-grid .input-group:nth-child(4) {
  border-left-color: #6f42c1;
} /* Winter - Lila */

/* Elektroauto Features */
.form-section:nth-child(2) h4::before {
  content: "⚡";
}

/* Preismanagement */
.form-section:nth-child(3) h4::before {
  content: "💰";
}

/* Erweiterte Checkbox Styles */
.checkbox-label {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkbox-label:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-radius: 6px;
  margin-right: 1rem;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-color: #2e68b0;
  transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Parkplatz Status Badges erweitert */
.status-wartung {
  background-color: #ffeaa7;
  color: #d68910;
}

/* Preis-Anzeige in Tabellen */
.preis-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preis-basis {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.preis-zusatz {
  font-size: 0.75rem;
  color: #6c757d;
}

.preis-saisonal {
  background-color: #e3f2fd;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  color: #1976d2;
}

/* Elektro-Badge */
.elektro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.elektro-ja {
  background-color: #d4edda;
  color: #155724;
}

.elektro-nein {
  background-color: #f8d7da;
  color: #721c24;
}

.elektro-ladestation {
  background-color: #cce5ff;
  color: #004085;
  margin-top: 0.25rem;
  font-size: 0.7rem;
}

/* Höhen-Anzeige */
.hoehe-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #495057;
}

/* Modal Responsive für große Inhalte */
@media (max-width: 768px) {
  .preise-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .saisonale-preise {
    padding: 1rem;
  }
}

/* Animation für saisonale Preise Ein-/Ausblenden */
.saisonale-preise {
  transition: all 0.3s ease;
  overflow: hidden;
}

.saisonale-preise.show {
  display: block !important;
  animation: slideDown 0.3s ease;
}

.saisonale-preise.hide {
  animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    max-height: 500px;
  }
  to {
    opacity: 0;
    max-height: 0;
  }
}

/* Time Selector Styles */
.time-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.time-selector select {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: white;
  cursor: pointer;
}

.time-selector select:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.time-selector select:first-child {
  flex: 1;
  min-width: 80px;
}

.time-selector select:last-child {
  flex: 1;
  min-width: 80px;
}

.time-separator {
  font-weight: bold;
  font-size: 1.2rem;
  color: #495057;
  margin: 0 4px;
}

/* Radio Button Styles */
.category-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: #2e68b0;
  background-color: #f8f9ff;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  background-color: #2e68b0;
  border-color: #2e68b0;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-info {
  flex: 1;
}

.category-info strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.category-info strong i {
  color: #2e68b0;
}

.category-info .price {
  color: #2e68b0;
  font-weight: 600;
  font-size: 1rem;
}

.category-info small {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Parking Spots Selection */
.parking-spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.parking-spot {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.parking-spot:hover {
  border-color: #2e68b0;
  background-color: #f8f9ff;
}

.parking-spot.selected {
  border-color: #2e68b0;
  background-color: #2e68b0;
  color: white;
}

.parking-spot h4 {
  margin-bottom: 0.5rem;
}

.parking-spot .category {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Summary Styles */
.summary-content {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
}

.summary-item.total {
  border-top: 2px solid #dee2e6;
  margin-top: 1rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2e68b0;
}

/* Checkbox Styling */
.checkbox-group {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #2e68b0;
  border-radius: 4px;
  margin-right: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  background-color: white;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background-color: #2e68b0;
  border-color: #2e68b0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.checkbox-label:hover .checkbox-custom {
  border-color: #5a6fd8;
}

.checkbox-label a {
  color: #2e68b0;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Address Grid Layout */
.address-street {
  grid-column: 1 / 3;
}

.address-number {
  grid-column: 3 / 4;
}

.address-zip {
  grid-column: 1 / 2;
}

.address-city {
  grid-column: 2 / 4;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2e68b0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Messages */
.error-message,
.message-container {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message-warning {
  background-color: #2e68b0;
  color: #e4ad0d;
  border: 1px solid #ffeaa7;
}

.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.loading {
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e68b0;
}

.logo-icon {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2e68b0;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #2e68b0;
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-admin {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.nav-admin:hover {
  transform: translateY(-2px);
}

.nav-admin::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle i {
  font-size: 1.5rem;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  margin-top: 50px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-highlight {
  color: #ffffff;
  text-transform: uppercase;
}

.hero-highlight-small {
  font-weight: 100;
  font-size: 2rem;
  line-height: -0.8rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hero-logo {
  background-color: white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  animation: logoFadeIn 1.5s ease-out;
  transition: all 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.hero-logo-image {
  max-width: 280px;
  height: auto;
  filter: brightness(1.1) saturate(1.1);
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-logo-image:hover {
  filter: brightness(1.2) saturate(1.2);
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-card {
  /* background: rgba(255, 255, 255, 0.95); */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.quick-booking h3 {
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-input label {
  font-weight: 600;
  color: #495057;
}

.quick-input input {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.quick-input input:focus {
  outline: none;
  border-color: #2e68b0;
}

/* KPIs Section */
.kpis {
  background: white;
  padding: 4rem 0;
  border-bottom: 1px solid #e9ecef;
}

.kpis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.kpi-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  transition: transform 0.3s ease;
  border-left: 4px solid #2e68b0;
}

.kpi-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.kpi-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2e68b0;
  margin: 0;
}

.kpi-label {
  color: #6c757d;
  font-weight: 600;
  margin: 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  min-height: 100vh;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e68b0;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Booking Section */
.booking-section {
  padding: 6rem 0;
  background: white;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  box-shadow: unset !important;
  backdrop-filter: unset !important;
  border-radius: unset !important;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.about-feature i {
  font-size: 1.5rem;
  color: #2e68b0;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #2e68b0;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: white;
}

.contact-content {
  display: grid;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.contact-item i {
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e68b0;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #6c757d;
  margin: 0;
}

.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  border: 2px dashed #ced4da;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #2e68b0;
}

/* Footer */
.footer {
  background: #2e68b0;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo img {
  background-color: #ffffff;
  border-radius: 15px;
}

.footer-section p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #2e68b0;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  /* Hero Logo responsive adjustments */
  .hero-logo-image {
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  /* Neue CSS-Regeln für zentriertes Logo auf mobilen Geräten */
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
  }

  .nav-logo {
    justify-content: center;
    margin-bottom: 10px;
    order: 1;
  }

  .nav-toggle {
    position: absolute;
    top: 15px;
    right: 20px;
    order: 3;
  }

  .nav-menu {
    position: fixed;
    top: 90px; /* Angepasst für die neue Navbar-Höhe */
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    order: 2;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  /* Hero-Section Anpassungen für die neue Navbar */
  .hero {
    margin-top: 90px; /* Angepasst für die neue mobile Navbar-Höhe */
  }

  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .kpis-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .date-inputs {
    grid-template-columns: 1fr;
  }

  .category-selection {
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    flex-wrap: wrap;
  }

  .modal-content {
    margin: 5% auto;
    width: 95%;
  }

  table {
    font-size: 0.8rem;
  }

  table th,
  table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }

  .address-street,
  .address-number,
  .address-zip,
  .address-city {
    grid-column: span 2;
  }

  .login-form-wrapper {
    padding: 1.5rem;
    margin: 1rem;
  }

  .admin-header {
    flex-direction: column;
    gap: 1rem;
  }

  .admin-user-info {
    align-self: stretch;
  }

  /* Logo responsive styles */
  .logo-image {
    height: 32px;
  }

  .admin-header-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .admin-logo {
    height: 38px;
  }

  .footer-logo-image {
    height: 65px;
  }

  /* Hero Logo responsive adjustments */
  .hero-logo-image {
    max-width: 200px;
  }

  .hero-logo {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .booking-form-container {
    padding: 1rem;
  }

  .admin-section {
    padding: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .success-actions .btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .hero-card {
    padding: 1rem;
    margin-top: 2rem;
  }

  .kpi-item {
    padding: 1rem;
    min-height: auto;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Logo styles for very small screens */
  .logo-image {
    height: 32px;
  }

  .admin-logo {
    height: 38px;
  }

  .footer-logo-image {
    height: 65px;
  }

  .admin-header-content {
    gap: 0.75rem;
  }

  .admin-header-text h1 {
    font-size: 1.5rem;
  }

  .admin-header-text p {
    font-size: 0.9rem;
  }

  /* Hero Logo responsive adjustments */
  .hero-logo-image {
    max-width: 160px;
  }

  .hero-logo {
    margin-bottom: 1rem;
  }
}

/* Cookie Consent Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2e68b0 0%, #34495e 100%);
  color: white;
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  animation: slideUpCookie 0.5s ease forwards;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.cookie-banner-text p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@keyframes slideUpCookie {
  to {
    transform: translateY(0);
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  animation: fadeInModal 0.3s ease forwards;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInModal 0.3s ease forwards;
}

@keyframes fadeInModal {
  to {
    opacity: 1;
  }
}

@keyframes slideInModal {
  from {
    transform: scale(0.9) translateY(50px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

.cookie-modal-header {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-description {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2e68b0;
}

.cookie-description p {
  margin: 0;
  color: #495057;
  line-height: 1.6;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-category {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: #2e68b0;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.cookie-category-header {
  padding: 1.5rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-category-info h3 i {
  color: #2e68b0;
}

.cookie-category-info p {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-category-details {
  padding: 0 1.5rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.cookie-category-details p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: #6c757d;
}

.cookie-category-details strong {
  color: #495057;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: flex;
  align-items: center;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.toggle-label {
  position: relative;
  width: 50px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}

.toggle-label:hover {
  background: #bbb;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
  background: #2e68b0;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label .toggle-slider {
  transform: translateX(22px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label {
  background: #28a745;
  cursor: not-allowed;
  opacity: 0.8;
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label:hover {
  background: #28a745;
}

.cookie-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-link {
  color: #2e68b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

.cookie-modal-footer {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e9ecef;
}

.cookie-footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cookie Settings Button (Fixed) */
.cookie-settings-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  z-index: 1500;
  opacity: 0.8;
}

.cookie-settings-btn:hover {
  transform: translateY(-3px);
  opacity: 1;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Cookie Success Message */
.cookie-success {
  position: fixed;
  top: 100px;
  right: 30px;
  background: #28a745;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  z-index: 2500;
  transform: translateX(100%);
  animation: slideInSuccess 0.3s ease forwards;
}

@keyframes slideInSuccess {
  to {
    transform: translateX(0);
  }
}

.cookie-success.hide {
  animation: slideOutSuccess 0.3s ease forwards;
}

@keyframes slideOutSuccess {
  to {
    transform: translateX(100%);
  }
}

/* Responsive Cookie Styles */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-banner-text {
    min-width: auto;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-modal {
    padding: 0.5rem;
  }

  .cookie-modal-content {
    max-height: 95vh;
  }

  .cookie-modal-header {
    padding: 1rem 1.5rem;
  }

  .cookie-modal-header h2 {
    font-size: 1.3rem;
  }

  .cookie-modal-body {
    padding: 1.5rem;
  }

  .cookie-category-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-category-details {
    padding: 1rem;
  }

  .cookie-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-modal-footer {
    padding: 1rem 1.5rem;
  }

  .cookie-footer-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-footer-actions .btn {
    width: 100%;
    margin: 0.25rem 0;
  }

  .cookie-settings-btn {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .cookie-success {
    top: 80px;
    right: 20px;
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    margin: 0.25rem 0;
  }

  .cookie-modal-header {
    padding: 1rem;
  }

  .cookie-modal-body {
    padding: 1rem;
  }

  .cookie-category-header {
    padding: 0.75rem;
  }

  .cookie-category-details {
    padding: 0.75rem;
  }

  .toggle-label {
    width: 40px;
    height: 24px;
  }

  .toggle-slider {
    width: 20px;
    height: 20px;
    top: 2px;
    left: 2px;
  }

  .cookie-toggle input[type="checkbox"]:checked + .toggle-label .toggle-slider {
    transform: translateX(16px);
  }
}

/* Responsive adjustments for time selector */
@media (max-width: 480px) {
  .time-selector {
    gap: 4px;
  }

  .time-selector select {
    padding: 10px 8px;
    font-size: 0.9rem;
    min-width: 60px;
  }

  .time-separator {
    font-size: 1rem;
    margin: 0 2px;
  }
}

/* Logo Styles */
.logo-image {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.footer-logo-image {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

.admin-header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.admin-logo {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.admin-header-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.admin-header-text p {
  margin: 0.5rem 0 0 0;
  color: #666;
  font-size: 1rem;
}

/* Admin Dashboard Styles */

/* Admin Header */
.admin-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.admin-logo {
  height: 50px;
  width: auto;
}

.admin-header-text h1 {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}

.admin-header-text p {
  margin: 0.25rem 0 0 0;
  color: #6c757d;
  font-size: 1rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 2px solid #e9ecef;
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-user-name {
  font-weight: 600;
  color: #495057;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.logout-btn {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: linear-gradient(135deg, #c82333, #bd2130);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

/* Admin Navigation */
.admin-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.nav-btn {
  padding: 0.75rem 1.5rem;
  background-color: #f8f9fa;
  color: #495057;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.nav-btn:hover {
  background-color: #e9ecef;
  border-color: #2e68b0;
  color: #2e68b0;
  transform: translateY(-1px);
}

.nav-btn.active {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border-color: #2e68b0;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

/* Admin Sections */
.admin-section {
  display: none;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.admin-section.active {
  display: block;
}

.admin-section h2 {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Filters */
.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Tables */
.table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.9rem;
}

table thead {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
}

table tbody tr:hover {
  background-color: #f8f9fa;
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* Status Badges */
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-offen {
  background-color: #ffeaa7;
  color: #d63031;
}

.status-bezahlt {
  background-color: #55efc4;
  color: #00b894;
}

.status-storniert {
  background-color: #fab1a0;
  color: #e17055;
}

.status-aktiv {
  background-color: #55efc4;
  color: #00b894;
}

.status-inaktiv {
  background-color: #ddd;
  color: #636e72;
}

/* Section Actions */
.section-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.section-actions small {
  font-style: italic;
  color: #6c757d !important;
  margin: 0;
}

/* Testdaten Button spezielle Farbe */
.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6268, #545b62);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Admin Forms */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.admin-form h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #2e68b0;
  position: relative;
}

.admin-form h2::before {
  content: "📝";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: -50px;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.input-group label {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.input-group input::placeholder {
  color: #adb5bd;
  font-style: italic;
}

/* Erweiterte Input-Styles */
.input-group-enhanced {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group-enhanced label {
  position: absolute;
  top: -8px;
  left: 16px;
  background: white;
  padding: 0 8px;
  font-size: 0.8rem;
  color: #2e68b0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.input-group-enhanced input,
.input-group-enhanced select {
  width: 100%;
  padding: 1.2rem 1rem 1rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1.1rem;
  background: white;
  transition: all 0.3s ease;
}

.input-group-enhanced input:focus,
.input-group-enhanced select:focus {
  border-color: #2e68b0;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

/* Verbesserte Checkbox-Styles */
.checkbox-label {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkbox-label:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-radius: 6px;
  margin-right: 1rem;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-color: #2e68b0;
  transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Verbesserte Button-Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 5px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 16px;
}

/* Modal-Verbesserungen */
.modal-content {
  background: white;
  margin: 3% auto;
  padding: 0;
  border: none;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.4s ease;
  overflow: hidden;
}

.modal-content h3 {
  margin: 0;
  padding: 2rem;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.modal-content h3::before {
  content: "✨";
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.modal-content form {
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 0 0 20px 20px;
  border-top: 1px solid #e9ecef;
}

/* Spezielle Styles für manuelle Reservierung */
#neue-reservierung .admin-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 2px solid #e9ecef;
}

#neue-reservierung .form-row {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

#neue-reservierung .input-group input,
#neue-reservierung .input-group select {
  background: white;
  border: 2px solid #e9ecef;
}

#neue-reservierung .input-group input:focus,
#neue-reservierung .input-group select:focus {
  background: #f8f9ff;
  border-color: #2e68b0;
}

/* Responsive Verbesserungen */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .modal-content {
    width: 95%;
    margin: 2% auto;
  }

  .modal-content h3 {
    padding: 1.5rem;
    font-size: 1.3rem;
  }

  .modal-content form {
    padding: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
    padding: 1.5rem;
  }

  .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border: none;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

.modal-large {
  max-width: 900px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h3 {
  margin: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border-radius: 12px 12px 0 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.modal-content form {
  padding: 2rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
  background-color: #f8f9fa;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid #e9ecef;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Reservierungsdetails */
.reservierung-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-section {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2e68b0;
}

.detail-section h4 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-item label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.9rem;
}

.detail-item span {
  color: #333;
  font-size: 1rem;
}

/* Session Modal */
.session-modal {
  display: flex;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.session-modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.session-modal-content h3 {
  margin: 0 0 1rem 0;
  color: #dc3545;
  font-size: 1.5rem;
}

.session-modal-content p {
  margin: 0 0 2rem 0;
  color: #6c757d;
  line-height: 1.5;
}

/* Loading Overlay */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.loading-spinner p {
  margin-top: 1rem;
  color: #2e68b0;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Message Container */
.message-container {
  position: fixed;
  top: 100px;
  right: 30px;
  min-width: 300px;
  max-width: 500px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  z-index: 1600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: slideInMessage 0.3s ease;
}

@keyframes slideInMessage {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* End Admin Dashboard Styles */

/* Zusatzleistungen / Reinigungsservice */
.zusatzleistungen {
  margin-top: 1rem;
}

.service-option {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-option:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
}

.service-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.service-info {
  flex: 1;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.service-title i {
  color: #2e68b0;
  font-size: 1.1rem;
}

.service-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Reinigungsoptionen */
.reinigung-options {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
  animation: slideDown 0.3s ease;
}

.reinigung-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reinigung-type {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.reinigung-type:hover {
  border-color: #2e68b0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.reinigung-type .radio-option {
  padding: 1.25rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  border-radius: 8px;
}

.reinigung-type input[type="radio"]:checked + .radio-custom + .service-detail {
  color: #2e68b0;
}

.reinigung-type input[type="radio"]:checked ~ * {
  border-color: #2e68b0;
}

.service-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-detail strong {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e68b0;
  margin: 0.25rem 0;
}

.service-detail small {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Reinigungsnotizen Textarea */
.reinigung-options .input-group {
  margin-top: 1rem;
}

.reinigung-options textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.reinigung-options textarea:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.reinigung-options textarea::placeholder {
  color: #999;
  font-style: italic;
}

/* Summary Services erweitert */
.summary-services {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin: 0.5rem 0;
  border-left: 4px solid #2e68b0;
}

.summary-services .summary-item {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.summary-services .summary-item:last-child {
  margin-bottom: 0;
}

/* Animationen */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}

.reinigung-options.show {
  display: block !important;
  animation: slideDown 0.3s ease;
}

.reinigung-options.hide {
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .reinigung-types {
    grid-template-columns: 1fr;
  }

  .service-label {
    flex-direction: column;
    gap: 0.75rem;
  }

  .service-option {
    padding: 1rem;
  }

  .reinigung-type .radio-option {
    padding: 1rem;
  }
}

/* Admin-Aktionen in Reservierungsdetails */
.admin-actions {
  margin-top: 2rem;
  border-top: 2px solid #e9ecef;
  padding-top: 2rem;
}

.admin-actions h4 {
  color: #2e68b0;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-section {
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #2e68b0;
}

.action-section h5 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Preisanpassung */
.price-adjustment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.current-price {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.current-price label {
  font-weight: 600;
  color: #495057;
  margin: 0;
}

.price-display {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2e68b0;
  background: #f8f9ff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-group {
  position: relative;
}

.input-suffix {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-weight: 600;
  pointer-events: none;
}

.input-group input[type="number"] {
  padding-right: 30px;
}

.price-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.price-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-actions .btn i {
  font-size: 0.9rem;
}

/* Reinigungsservice Addon */
.cleaning-service-addon {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.cleaning-service-addon .radio-option {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cleaning-service-addon .radio-option:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
}

.cleaning-service-addon
  input[type="radio"]:checked
  + .radio-custom
  + .service-detail {
  color: #2e68b0;
}

.cleaning-service-addon input[type="radio"]:checked ~ * {
  border-color: #2e68b0;
}

/* Preishistorie */
.price-history {
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.history-item {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history-item:last-child {
  border-bottom: none;
}

.history-details {
  flex: 1;
}

.history-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.history-change {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-increase {
  color: #dc3545;
}

.price-decrease {
  color: #28a745;
}

.history-reason {
  font-size: 0.9rem;
  color: #495057;
  margin-top: 0.25rem;
}

.history-amount {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}

/* Responsive Anpassungen für Admin-Aktionen */
@media (max-width: 768px) {
  .input-row {
    grid-template-columns: 1fr;
  }

  .price-actions {
    flex-direction: column;
  }

  .service-types {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    padding-top: 1.5rem;
  }

  .action-section {
    padding: 1rem;
  }

  .current-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Preiszeitraum-Management Styles */
.price-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.price-tab {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #6c757d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.price-tab:hover {
  color: #2e68b0;
  background-color: #f8f9ff;
}

.price-tab.active {
  color: #2e68b0;
  border-bottom-color: #2e68b0;
  background-color: #f8f9ff;
}

.price-tab-content {
  display: none;
}

.price-tab-content.active {
  display: block;
}

/* Preiszeitraum-Tabellen */
.price-period-row {
  position: relative;
}

.price-period-row.expired {
  background-color: #f8f9fa;
  opacity: 0.7;
}

.price-period-row.active {
  background-color: #d4edda;
  border-left: 4px solid #28a745;
}

.price-period-row.future {
  background-color: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.price-status-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.price-status-indicator.expired {
  background-color: #6c757d;
}

.price-status-indicator.active {
  background-color: #28a745;
}

.price-status-indicator.future {
  background-color: #2196f3;
}

/* Preisperioden-Badges */
.price-period-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.period-expired {
  background-color: #f8d7da;
  color: #721c24;
}

.period-active {
  background-color: #d4edda;
  color: #155724;
}

.period-future {
  background-color: #cce5ff;
  color: #004085;
}

/* Bulk-Update Styles */
.bulk-preise {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2e68b0;
  margin-top: 1rem;
}

.bulk-preise h4 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.1rem;
}

.bulk-preise .form-row {
  margin-bottom: 1rem;
}

.bulk-preise .input-group label {
  font-weight: 600;
  color: #495057;
}

/* Price Overlap Warning */
.price-overlap-warning {
  background-color: #2e68b0;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  color: #e4ad0d;
}

.price-overlap-warning h4 {
  margin: 0 0 0.5rem 0;
  color: #e4ad0d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-overlap-warning ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.price-overlap-warning li {
  margin-bottom: 0.25rem;
}

/* Service Type Badges */
.service-type-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.service-basis {
  background-color: #e3f2fd;
  color: #1976d2;
}

.service-premium {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.service-vollservice {
  background-color: #fff3e0;
  color: #f57c00;
}

/* Preiszeitraum-Konflikte Anzeige */
.price-conflict {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 0.75rem;
  margin: 0.5rem 0;
  color: #721c24;
  font-size: 0.9rem;
}

.price-conflict i {
  color: #dc3545;
  margin-right: 0.5rem;
}

/* Datum-Range Picker Styling */
.date-range-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-range-separator {
  font-weight: bold;
  color: #6c757d;
  font-size: 1.1rem;
}

/* Copy Price Modal */
.copy-price-source {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #2e68b0;
  margin: 1rem 0;
}

.copy-price-preview {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.copy-price-preview h5 {
  margin: 0 0 1rem 0;
  color: #495057;
}

.copy-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-bottom: 1px solid #f1f3f4;
}

.copy-price-item:last-child {
  border-bottom: none;
}

/* Responsive Anpassungen für Preiszeiträume */
@media (max-width: 768px) {
  .price-tabs {
    flex-direction: column;
    gap: 0;
  }

  .price-tab {
    border-bottom: 1px solid #e9ecef;
    border-radius: 0;
    text-align: left;
  }

  .price-tab.active {
    border-bottom-color: #e9ecef;
    border-left: 4px solid #2e68b0;
  }

  .bulk-preise .form-row {
    flex-direction: column;
  }

  .date-range-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .date-range-separator {
    text-align: center;
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}

/* Preiszeitraum-Statistiken */
.price-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #2e68b0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2e68b0;
  margin-bottom: 0.5rem;
}

.price-stat-label {
  color: #6c757d;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-stat-trend {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.trend-up {
  color: #28a745;
}

.trend-down {
  color: #dc3545;
}

.trend-neutral {
  color: #6c757d;
}

/* Batch-Bearbeitung Styles */
.batch-actions {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 2px solid #2e68b0;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
  animation: slideDown 0.3s ease;
}

.batch-info {
  font-weight: 600;
  color: #2e68b0;
  font-size: 1.1rem;
}

.batch-buttons {
  display: flex;
  gap: 0.5rem;
}

.batch-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.batch-option:hover {
  background: #f8f9ff;
  border-color: #2e68b0;
}

.batch-option .checkbox-label {
  flex: 1;
  margin-bottom: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.batch-option select,
.batch-option input[type="number"] {
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  min-width: 200px;
  transition: all 0.3s ease;
}

.batch-option select:enabled,
.batch-option input[type="number"]:enabled {
  border-color: #2e68b0;
  background: white;
}

.batch-option select:disabled,
.batch-option input[type="number"]:disabled {
  background: #f8f9fa;
  opacity: 0.6;
}

.batch-summary {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #2e68b0;
  margin-bottom: 2rem;
}

.selected-list {
  margin-top: 1rem;
  max-height: 200px;
  overflow-y: auto;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.selected-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
}

.selected-item:last-child {
  border-bottom: none;
}

/* Parkplätze-Tabelle Checkboxes */
.parkplatz-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #2e68b0;
}

.table-container input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
}

.table-row-selected {
  background: #f8f9ff !important;
  border-left: 4px solid #2e68b0;
}

/* Icons für Form-Sektionen */
.form-section:nth-child(1) h4::before {
  content: "📋";
  filter: none;
}
.form-section:nth-child(2) h4::before {
  content: "⚡";
  filter: none;
}
.form-section:nth-child(3) h4::before {
  content: "💰";
  filter: none;
}

/* Animation für Batch-Actions */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Batch-Actions */
@media (max-width: 768px) {
  .batch-actions {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .batch-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .batch-option {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .batch-option select,
  .batch-option input[type="number"] {
    min-width: unset;
    width: 100%;
  }
}

/* Booking Section Specific Styles */
.booking-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-section-block {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  border-left: 6px solid #2e68b0;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.booking-section-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.2);
}

.booking-section-title {
  margin: 0 0 2rem 0;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-section-title i {
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e68b0;
  font-size: 1.2rem;
}

.booking-date-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.booking-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.booking-input-label {
  font-weight: 700;
  color: #495057;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-input-label::before {
  content: "●";
  color: #2e68b0;
  font-size: 0.8rem;
}

.booking-date-input,
.booking-text-input,
.booking-select {
  padding: 1.2rem 1.5rem;
  border: 3px solid #e9ecef;
  border-radius: 16px;
  font-size: 1.1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.booking-date-input:focus,
.booking-text-input:focus,
.booking-select:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  transform: translateY(-3px);
  background: #f8f9ff;
}

.booking-date-input::placeholder,
.booking-text-input::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.booking-time-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.booking-time-select {
  flex: 1;
  padding: 1.2rem 1rem;
  border: 3px solid #e9ecef;
  border-radius: 16px;
  font-size: 1.1rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-time-select:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  background: #f8f9ff;
}

.booking-time-separator {
  font-weight: bold;
  font-size: 1.4rem;
  color: #2e68b0;
  margin: 0 6px;
}

.booking-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.booking-service-info-box {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 3px solid #e3f2fd;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.booking-service-main h4 {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.booking-service-main h4 i {
  color: #2e68b0;
  font-size: 1.5rem;
}

.booking-service-description {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.booking-feature-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.booking-feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.booking-feature-tag i {
  font-size: 0.8rem;
}

.booking-services-selection {
  margin-top: 1.5rem;
}

.booking-service-option {
  background: white;
  border: 3px solid #e9ecef;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.booking-service-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #2e68b0 0%, #2e68b0 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.booking-service-option:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.booking-service-option:hover::before {
  transform: scaleY(1);
}

.booking-service-option input[type="checkbox"] {
  display: none;
}

.booking-service-info {
  flex: 1;
}

.booking-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.booking-service-header strong {
  font-size: 1.3rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-service-header i {
  color: #2e68b0;
  font-size: 1.2rem;
}

.booking-service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2e68b0;
  background: #f8f9ff;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: 2px solid #e3f2fd;
}

.booking-service-option small {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
}

.booking-availability-message {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: 20px;
  border: 3px solid #28a745;
  margin: 2rem 0;
}

.booking-availability-message i {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.booking-availability-message p {
  font-size: 1.3rem;
  color: #155724;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.booking-customer-input {
  padding: 1.2rem 1.5rem;
  border: 3px solid #e9ecef;
  border-radius: 16px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.booking-customer-input:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
  background: #f8f9ff;
}

.booking-vehicle-subtitle {
  margin: 2.5rem 0 1.5rem 0;
  color: #495057;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.booking-vehicle-subtitle i {
  color: #2e68b0;
  font-size: 1.2rem;
}

.booking-services-subtitle {
  margin: 2.5rem 0 1.5rem 0;
  color: #495057;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.booking-services-subtitle i {
  color: #2e68b0;
  font-size: 1.2rem;
}

.booking-address-subtitle {
  margin: 2.5rem 0 1.5rem 0;
  color: #495057;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.booking-address-subtitle i {
  color: #2e68b0;
  font-size: 1.2rem;
}

/* Booking Address Grid */
.booking-address-street {
  grid-column: 1 / 3;
}

.booking-address-number {
  grid-column: 3 / 4;
}

.booking-address-zip {
  grid-column: 1 / 2;
}

.booking-address-city {
  grid-column: 2 / 4;
}

/* Booking Zusatzleistungen */
.booking-zusatzleistungen {
  margin-top: 2rem;
}

.booking-service-checkbox-option {
  background: white;
  border: 3px solid #e9ecef;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.booking-service-checkbox-option:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.booking-checkbox-label {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1.5rem;
}

.booking-checkbox-custom {
  width: 28px;
  height: 28px;
  border: 3px solid #ccc;
  border-radius: 8px;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.booking-checkbox-label
  input[type="checkbox"]:checked
  + .booking-checkbox-custom {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-color: #2e68b0;
  transform: scale(1.1);
}

.booking-checkbox-label
  input[type="checkbox"]:checked
  + .booking-checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.booking-service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.booking-service-title i {
  color: #2e68b0;
  font-size: 1.2rem;
}

.booking-service-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
}

.booking-reinigung-options {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
  animation: bookingSlideDown 0.3s ease;
}

.booking-reinigung-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.booking-reinigung-type {
  background: white;
  border: 3px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.booking-reinigung-type:hover {
  border-color: #2e68b0;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-3px);
}

.booking-radio-option {
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
}

.booking-radio-custom {
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-radius: 50%;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-reinigung-type input[type="radio"]:checked + .booking-radio-custom {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-color: #2e68b0;
  transform: scale(1.1);
}

.booking-reinigung-type
  input[type="radio"]:checked
  + .booking-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.booking-service-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-service-detail strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.booking-reinigung-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e68b0;
  margin: 0.5rem 0;
  background: #f8f9ff;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  display: inline-block;
}

.booking-service-detail small {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

.booking-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 3px solid #e9ecef;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  transition: all 0.3s ease;
  background: white;
  min-height: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-textarea:focus {
  outline: none;
  border-color: #2e68b0;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  background: #f8f9ff;
}

.booking-textarea::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.booking-checkbox-group {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  border: 2px solid #e9ecef;
}

.booking-agb-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.6;
  gap: 1rem;
}

.booking-agb-label input[type="checkbox"] {
  display: none;
}

.booking-agb-custom {
  width: 24px;
  height: 24px;
  border: 3px solid #2e68b0;
  border-radius: 6px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  background: white;
  transition: all 0.3s ease;
}

.booking-agb-label input[type="checkbox"]:checked + .booking-agb-custom {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-color: #2e68b0;
  transform: scale(1.05);
}

.booking-agb-label input[type="checkbox"]:checked + .booking-agb-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.booking-agb-label:hover .booking-agb-custom {
  border-color: #5a6fd8;
}

.booking-agb-label a {
  color: #2e68b0;
  text-decoration: none;
  font-weight: 600;
}

.booking-agb-label a:hover {
  text-decoration: underline;
}

/* Booking Summary */
.booking-summary-content {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 3px solid #e3f2fd;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
  /* Verbesserte mobile Unterstützung */
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Geändert von center zu flex-start */
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 1.1rem;
  /* Text-Overflow-Verbesserungen */
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.4;
}

.booking-summary-item:last-child {
  border-bottom: none;
}

.booking-summary-item.booking-total {
  border-top: 3px solid #2e68b0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2e68b0;
  background: #f8f9ff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 0;
  /* Responsive Text-Behandlung */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.booking-summary-services {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
  border-left: 4px solid #2e68b0;
  /* Text-Overflow-Schutz */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.booking-summary-services .booking-summary-item {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  padding: 0.5rem 0;
}

/* Verbesserte mobile Styles für Buchungsübersicht */
@media (max-width: 768px) {
  .booking-summary-content {
    padding: 1.5rem;
    border-radius: 15px;
    border-width: 2px;
  }

  .booking-summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.8rem 0;
  }

  .booking-summary-item span:first-child {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.3rem;
  }

  .booking-summary-item span:last-child {
    font-weight: 500;
    color: #333;
    /* Sicherstellen dass Text umbricht */
    width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .booking-summary-item.booking-total {
    padding: 1.2rem;
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .booking-summary-item.booking-total span:first-child {
    font-size: 1.1rem;
  }

  .booking-summary-item.booking-total span:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e68b0;
  }

  .booking-summary-services {
    padding: 1.2rem;
    margin: 0.8rem 0;
  }

  .booking-summary-services .booking-summary-item {
    font-size: 0.95rem;
    padding: 0.4rem 0;
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 480px) {
  .booking-summary-content {
    padding: 1.2rem;
    border-radius: 12px;
  }

  .booking-summary-item {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .booking-summary-item span:first-child {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .booking-summary-item span:last-child {
    font-size: 0.95rem;
    /* Extra Schutz für sehr kleine Bildschirme */
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .booking-summary-item.booking-total {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .booking-summary-item.booking-total span:first-child {
    font-size: 1rem;
  }

  .booking-summary-item.booking-total span:last-child {
    font-size: 1.2rem;
  }

  .booking-summary-services {
    padding: 1rem;
  }

  .booking-summary-services .booking-summary-item {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }
}

/* Zusätzliche mobile Verbesserungen für Buchungsformular */
@media (max-width: 768px) {
  .booking-section-title {
    font-size: 1.4rem;
    /* Text-Umbrechen für lange Titel */
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
  }

  .booking-service-description {
    /* Besserer Textumbruch für Beschreibungen */
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
  }

  .booking-feature-tag {
    /* Feature-Tags responsive machen */
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    min-width: auto;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .booking-section-title {
    font-size: 1.2rem;
    line-height: 1.2;
    /* Mehr Platz zwischen Icon und Text */
    gap: 12px;
  }

  .booking-service-description {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .booking-feature-tag {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    /* Kleinere Tags für mobile */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

/* Booking Buttons */
.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 250px;
}

.booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.booking-btn:hover::before {
  left: 100%;
}

.booking-btn-primary {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.booking-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.booking-btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.booking-btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(108, 117, 125, 0.4);
}

.booking-btn-large {
  padding: 2rem 4rem;
  font-size: 1.4rem;
  border-radius: 25px;
  min-width: 300px;
}

/* Animations */
@keyframes bookingSlideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
  }
}

.booking-reinigung-options.show {
  display: block !important;
  animation: bookingSlideDown 0.4s ease;
}

/* Responsive Design für Booking */
@media (max-width: 992px) {
  .booking-date-inputs {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-input-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-reinigung-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-form-wrapper {
    padding: 2rem;
  }

  .booking-section-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .booking-date-inputs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-input-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-time-selector {
    gap: 8px;
  }

  .booking-feature-tags {
    flex-direction: column;
    gap: 0.8rem;
  }

  .booking-service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .booking-address-street,
  .booking-address-number,
  .booking-address-zip,
  .booking-address-city {
    grid-column: span 2;
  }

  .booking-btn {
    width: 100%;
    min-width: unset;
    margin: 0.5rem 0;
  }

  .booking-section-title {
    font-size: 1.4rem;
  }

  .booking-summary-item {
    font-size: 1rem;
  }

  .booking-summary-item.booking-total {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .booking-form-wrapper {
    padding: 1.5rem;
  }

  .booking-section-block {
    padding: 1.5rem;
  }

  .booking-date-input,
  .booking-text-input,
  .booking-select,
  .booking-time-select,
  .booking-customer-input {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }

  .booking-section-title {
    font-size: 1.2rem;
    gap: 10px;
  }

  .booking-section-title i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .booking-service-main h4 {
    font-size: 1.5rem;
  }

  .booking-service-description {
    font-size: 1rem;
  }

  .booking-feature-tag {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .booking-time-separator {
    font-size: 1.2rem;
    margin: 0 4px;
  }
}

/* Booking Date-Time Container Layout */
.booking-date-time-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-date-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.booking-time-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Mobile Layout für Date-Time Container */
@media (max-width: 768px) {
  .booking-date-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-time-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Fix für Zusatzservice Checkbox */
.booking-service-option.booking-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  cursor: pointer;
  padding: 2rem;
  background: white;
  border: 3px solid #e9ecef;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.booking-service-option.booking-checkbox-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #2e68b0 0%, #2e68b0 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.booking-service-option.booking-checkbox-label:hover {
  border-color: #2e68b0;
  background: #f8f9ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.booking-service-option.booking-checkbox-label:hover::before {
  transform: scaleY(1);
}

.booking-service-option.booking-checkbox-label input[type="checkbox"] {
  display: none;
}

.booking-service-option.booking-checkbox-label .booking-checkbox-custom {
  width: 28px;
  height: 28px;
  border: 3px solid #ccc;
  border-radius: 8px;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-service-option.booking-checkbox-label
  input[type="checkbox"]:checked
  + .booking-checkbox-custom {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-color: #2e68b0;
  transform: scale(1.1);
}

.booking-service-option.booking-checkbox-label
  input[type="checkbox"]:checked
  + .booking-checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.booking-service-option.booking-checkbox-label .booking-service-info {
  flex: 1;
}

/* Entferne alte booking-date-inputs styles wenn sie noch verwendet werden */
.booking-date-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Reservierungs-Timer Styles */
.reservation-timer {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border-radius: 20px;
  margin: 2rem 0;
  padding: 0;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: timerSlideIn 0.5s ease-out;
}

.reservation-timer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.timer-container {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.timer-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.timer-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: timerIconPulse 2s infinite;
}

.timer-info {
  flex: 1;
}

.timer-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.timer-title i {
  color: #4caf50;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.timer-subtitle {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

.timer-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timer-display-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-display {
  font-size: 3rem;
  font-weight: 900;
  font-family: "Courier New", monospace;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
  animation: timerPulse 1s infinite alternate;
}

.timer-progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.timer-progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #4caf50, #81c784);
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
  animation: progressFlow 2s infinite;
}

.timer-progress-green {
  background: linear-gradient(90deg, #4caf50, #81c784);
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.timer-progress-red {
  background: linear-gradient(90deg, #f44336, #ef5350);
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.5);
  animation: progressWarning 1s infinite;
}

.timer-warning {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  line-height: 1.4;
}

.timer-warning i {
  font-size: 1.1rem;
  opacity: 0.8;
}

.timer-warning-critical {
  background: rgba(244, 67, 54, 0.2);
  border-left-color: #f44336;
  animation: warningPulse 1s infinite;
}

.timer-warning-critical i {
  color: #ffeb3b;
  animation: warningIcon 0.5s infinite alternate;
}

/* Kritischer Zustand */
.timer-critical {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  animation: criticalPulse 1s infinite;
  box-shadow: 0 8px 32px rgba(244, 67, 54, 0.4);
}

.timer-critical .timer-display {
  color: #ffeb3b;
  animation: criticalTime 0.5s infinite alternate;
}

/* Animationen */
@keyframes timerSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timerIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  }
}

@keyframes timerPulse {
  from {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(255, 255, 255, 0.3);
  }
}

@keyframes progressFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes progressWarning {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes warningPulse {
  0%,
  100% {
    background: rgba(244, 67, 54, 0.2);
  }
  50% {
    background: rgba(244, 67, 54, 0.3);
  }
}

@keyframes warningIcon {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

@keyframes criticalPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(244, 67, 54, 0.4);
  }
  50% {
    box-shadow: 0 12px 40px rgba(244, 67, 54, 0.6);
  }
}

@keyframes criticalTime {
  from {
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
  }
  to {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.8);
  }
}

/* Responsive Design für Timer */
@media (max-width: 768px) {
  .reservation-timer {
    margin: 1.5rem 0;
  }

  .timer-container {
    padding: 1.5rem;
  }

  .timer-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .timer-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .timer-display {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .timer-warning {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .timer-container {
    padding: 1rem;
  }

  .timer-display {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .timer-title {
    font-size: 1.2rem;
  }

  .timer-subtitle {
    font-size: 0.9rem;
  }
}

/* Fehlerfeld-Hervorhebung */
.error-field {
  border-color: #e74c3c !important;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.3) !important;
  background-color: #fdf2f2 !important;
}

.error-field:focus {
  border-color: #e74c3c !important;
  box-shadow: 0 0 12px rgba(231, 76, 60, 0.4) !important;
}

/* Error Styling für Select-Felder */
.error-field.booking-time-select {
  border-color: #e74c3c !important;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.3) !important;
  background-color: #fdf2f2 !important;
}

/* Error Styling für Checkboxen */
.error-field:not(input) {
  border: 2px solid #e74c3c !important;
  background-color: transparent !important;
}

/* Animation für Fehlerfelder */
@keyframes errorPulse {
  0% {
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
  }
  50% {
    box-shadow: 0 0 16px rgba(231, 76, 60, 0.5);
  }
  100% {
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
  }
}

.error-field {
  animation: errorPulse 2s ease-in-out;
}

/* Individuelle Feld-Fehlermeldungen */
.field-error-message {
  display: none;
  margin-top: 6px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fee 0%, #fef2f2 100%);
  border: 1px solid #e74c3c;
  border-radius: 8px;
  color: #c0392b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.15);
}

.field-error-message::before {
  content: "⚠";
  margin-right: 8px;
  font-weight: bold;
  color: #e74c3c;
  font-size: 1rem;
}

.field-error-message.show {
  display: block;
  animation: errorSlideIn 0.4s ease-out;
}

@keyframes errorSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 6px;
  }
}

/* Error styling für verschiedene Container */
.booking-input-group {
  position: relative;
  margin-bottom: 4px; /* Mehr Platz für Error Messages */
}

.booking-checkbox-group {
  margin-bottom: 8px;
}

.booking-checkbox-group .field-error-message {
  margin-top: 8px;
  margin-left: 0;
}

/* Bessere Sichtbarkeit für kritische Fehler */
.field-error-message {
  border-left: 4px solid #e74c3c;
  background: linear-gradient(45deg, #fee 0%, #fdf2f2 100%);
}

/* Responsive Anpassungen für Error Messages */
@media (max-width: 768px) {
  .field-error-message {
    font-size: 0.8rem;
    padding: 8px 12px;
    margin-top: 5px;
  }

  .booking-input-group {
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .field-error-message {
    font-size: 0.75rem;
    padding: 6px 10px;
    margin-top: 4px;
  }

  .field-error-message::before {
    font-size: 0.9rem;
    margin-right: 6px;
  }
}

/* Responsive und scrollbare Modal-Erweiterungen */
.modal-responsive {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-body-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  max-height: calc(90vh - 200px); /* Platz für Header und Footer */
}

.modal-body-scrollable::-webkit-scrollbar {
  width: 8px;
}

.modal-body-scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Responsive Modal für verschiedene Bildschirmgrößen */
@media (max-width: 992px) {
  .modal-content {
    width: 95%;
    max-width: 95%;
    margin: 2% auto;
  }

  .modal-large {
    max-width: 95%;
  }

  .modal-body-scrollable {
    max-height: calc(96vh - 200px);
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 98%;
    max-width: 98%;
    margin: 1% auto;
    border-radius: 8px;
  }

  .modal-large {
    max-width: 98%;
  }

  .modal-body-scrollable {
    padding: 1.5rem;
    max-height: calc(98vh - 180px);
  }

  .modal-content h3 {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }

  .modal-actions {
    padding: 1rem 1.5rem;
  }

  .close {
    right: 15px;
    top: 15px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    height: 100vh;
  }

  .modal-large {
    max-width: 100%;
  }

  .modal-body-scrollable {
    padding: 1rem;
    max-height: calc(100vh - 160px);
  }

  .modal-content h3 {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .modal-actions {
    padding: 1rem;
  }

  .close {
    right: 10px;
    top: 10px;
    font-size: 22px;
  }
}

/* Preis-Historie Sektion */
.price-history-section {
  padding: 1.5rem 2rem;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.price-history-section h4 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .price-history-section {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .price-history-section {
    padding: 1rem;
  }
}

/* Reservierungsdetails Styles */
.reservation-details {
  width: 100%;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-section {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #2e68b0;
}

.detail-section h4 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section h4 i {
  color: #2e68b0;
  font-size: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-item span {
  color: #333;
  font-size: 1rem;
  word-break: break-word;
}

.detail-item span a {
  color: #2e68b0;
  text-decoration: none;
}

.detail-item span a:hover {
  text-decoration: underline;
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-bezahlt {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-offen {
  background-color: #2e68b0;
  color: #e4ad0d;
  border: 1px solid #ffeaa7;
}

.status-storniert {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #28a745;
}

/* Mobile Anpassungen für Reservierungsdetails */
@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-section {
    padding: 1rem;
  }

  .detail-section h4 {
    font-size: 1rem;
  }

  .detail-item {
    margin-bottom: 0.5rem;
  }

  .detail-item label {
    font-size: 0.85rem;
  }

  .detail-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .detail-section {
    padding: 0.75rem;
    border-left-width: 3px;
  }

  .detail-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .detail-item {
    margin-bottom: 0.4rem;
  }

  .detail-item label {
    font-size: 0.8rem;
  }

  .detail-item span {
    font-size: 0.9rem;
  }

  .status {
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
  }

  .price {
    font-size: 1.1rem;
  }
}

.availability-message {
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.availability-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 1px solid #b8dacd;
  color: #155724;
}

.availability-message.warning {
  background: linear-gradient(135deg, #2e68b0 0%, #ffeaa7 100%);
  border: 1px solid #ffc107;
  color: #e4ad0d;
}

.availability-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 1px solid #f1556c;
  color: #721c24;
}

.availability-message i {
  margin-right: 8px;
}

/* Time selector verbessert für Admin */
.admin-section .time-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-section .time-selector select {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  min-width: 60px;
}

.admin-section .time-selector select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.admin-section .time-separator {
  font-weight: bold;
  font-size: 16px;
  color: #6c757d;
}

/* Verfügbarkeit Button States */
#checkAvailabilityBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#checkAvailabilityBtn.checking {
  position: relative;
}

#checkAvailabilityBtn.checking::after {
  content: " 🔄";
  animation: spin 1s linear infinite;
}

/* Debug/Test Tools Styles */
.debug-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.debug-card h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 1.2em;
}

.debug-card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.debug-actions {
  margin: 15px 0;
}

.test-result {
  margin-top: 15px;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  min-height: 40px;
}

.test-result:empty {
  display: none;
}

.test-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 500;
}

.test-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 500;
}

.test-item {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 12px;
  margin: 8px 0;
}

.test-item strong {
  color: #333;
}

.status-success {
  color: #28a745;
  font-weight: 600;
}

.status-failed {
  color: #dc3545;
  font-weight: 600;
}

.test-details {
  font-size: 0.9em;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
}

.loading {
  color: #6c757d;
  font-style: italic;
}

.section-description {
  color: #6c757d;
  font-size: 0.95em;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #007bff;
}

/* Message Container für verschiedene Typen */
.message-container.message-warning {
  background-color: #2e68b0;
  color: #e4ad0d;
  border: 1px solid #ffeaa7;
}

.message-container.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Batch-Parkplatz Vorschau */
.batch-preview {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
  max-height: 300px;
  overflow-y: auto;
}

.batch-preview h5 {
  margin: 0 0 10px 0;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
}

.batch-preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.batch-preview-item {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #6c63ff;
}

.batch-preview-stats {
  background: #e9ecef;
  border-radius: 4px;
  padding: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: #6c757d;
}

.batch-preview-stats strong {
  color: #495057;
}

/* Scrollable Modal Styles */
.modal-scrollable {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header-scrollable {
  flex-shrink: 0;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-body-scrollable-main {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  max-height: calc(90vh - 140px);
}

.modal-footer-scrollable {
  flex-shrink: 0;
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e9ecef;
  border-radius: 0 0 20px 20px;
}

/* Batch Modal spezifische Styles */
#batchParkplatzModal .modal-content {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#batchParkplatzModal .modal-content h3 {
  flex-shrink: 0;
  margin: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  position: relative;
}

#batchParkplatzModal .modal-content form {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  max-height: calc(90vh - 200px);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#batchParkplatzModal .modal-actions {
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  border-radius: 0 0 20px 20px;
  border-top: 1px solid #e9ecef;
}

/* Custom Scrollbar für Modal */
#batchParkplatzModal .modal-content form::-webkit-scrollbar {
  width: 12px;
}

#batchParkplatzModal .modal-content form::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

#batchParkplatzModal .modal-content form::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2e68b0 0%, #2e68b0 100%);
  border-radius: 6px;
  border: 2px solid #f1f1f1;
}

#batchParkplatzModal .modal-content form::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
}

/* Firefox Scrollbar */
#batchParkplatzModal .modal-content form {
  scrollbar-width: thin;
  scrollbar-color: #2e68b0 #f1f1f1;
}

/* Responsive Anpassungen für Batch Modal */
@media (max-width: 992px) {
  #batchParkplatzModal .modal-content {
    width: 95%;
    max-width: 95%;
    margin: 2% auto;
    max-height: 96vh;
  }

  #batchParkplatzModal .modal-content form {
    max-height: calc(96vh - 180px);
    padding: 1.5rem;
  }

  #batchParkplatzModal .modal-content h3 {
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
  }

  #batchParkplatzModal .modal-actions {
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  #batchParkplatzModal .modal-content {
    width: 98%;
    max-width: 98%;
    margin: 1% auto;
    max-height: 98vh;
    border-radius: 12px;
  }

  #batchParkplatzModal .modal-content h3 {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 12px 12px 0 0;
  }

  #batchParkplatzModal .modal-content form {
    max-height: calc(98vh - 160px);
    padding: 1.5rem;
  }

  #batchParkplatzModal .modal-actions {
    padding: 1rem 1.5rem;
    flex-direction: column;
    border-radius: 0 0 12px 12px;
  }

  #batchParkplatzModal .modal-actions .btn {
    width: 100%;
    margin: 0.25rem 0;
  }

  /* Batch Preview anpassen für Mobile */
  .batch-preview-list {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 6px;
  }

  .batch-preview-item {
    padding: 6px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  #batchParkplatzModal .modal-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    height: 100vh;
    max-height: 100vh;
  }

  #batchParkplatzModal .modal-content h3 {
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 0;
  }

  #batchParkplatzModal .modal-content form {
    max-height: calc(100vh - 140px);
    padding: 1rem;
  }

  #batchParkplatzModal .modal-actions {
    padding: 1rem;
    border-radius: 0;
  }

  /* Form Sections kompakter für Mobile */
  #batchParkplatzModal .form-section {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  #batchParkplatzModal .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Batch Preview für sehr kleine Screens */
  .batch-preview {
    max-height: 200px;
    padding: 10px;
  }

  .batch-preview-list {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 4px;
  }

  .batch-preview-item {
    padding: 4px;
    font-size: 10px;
  }

  .batch-preview-stats {
    padding: 6px;
    font-size: 11px;
  }
}

/* Verbesserung der Close-Button Position für Batch Modal */
#batchParkplatzModal .close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

#batchParkplatzModal .close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Batch Modal Animation */
#batchParkplatzModal.modal {
  backdrop-filter: blur(8px);
}

#batchParkplatzModal .modal-content {
  animation: batchModalSlideIn 0.4s ease-out;
}

@keyframes batchModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Message Container für verschiedene Typen */
.message-container.message-warning {
  background-color: #2e68b0;
  color: #e4ad0d;
  border: 1px solid #ffeaa7;
}

.message-container.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Scroll-to-element fix für #contact innerhalb about section */
#contact {
  scroll-margin-top: 80px; /* Berücksichtigt die Navbar-Höhe */
  position: relative;
}

/* Smooth scrolling für alle Hash-Links */
html {
  scroll-behavior: smooth;
}

/* Navbar offset für smooth scrolling */
section[id] {
  scroll-margin-top: 80px;
}

/* Spezifische Anpassung für about section */
#about {
  position: relative;
}

#about #contact {
  padding-top: 60px; /* Zusätzlicher Abstand für besseres Scrollen */
  margin-top: -60px; /* Kompensiert den padding-top */
}

/* Neue Verfügbarkeits-Bestätigung Styles */
.booking-availability-success {
  margin: 1.5rem 0;
}

.availability-message {
  background: linear-gradient(135deg, #d4edda 0%, #e8f5e8 100%);
  border: 2px solid #28a745;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.availability-message::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.success-icon {
  font-size: 3rem;
  color: #28a745;
  animation: successPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.success-content h4 {
  margin: 0 0 0.75rem 0;
  color: #155724;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.success-content p {
  margin: 0 0 1.5rem 0;
  color: #155724;
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.35);
}

.feature-tag i {
  font-size: 0.9rem;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .availability-message {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .success-icon {
    font-size: 2.5rem;
    align-self: center;
  }

  .success-content h4 {
    justify-content: center;
    font-size: 1.3rem;
  }

  .success-content p {
    font-size: 1rem;
  }

  .service-features {
    justify-content: center;
  }

  .feature-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .availability-message {
    padding: 1rem;
  }

  .success-icon {
    font-size: 2rem;
  }

  .success-content h4 {
    font-size: 1.2rem;
  }

  .service-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}

@media (max-width: 480px) {
  /* Mobile Navigation für sehr kleine Bildschirme */
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 0px 15px;
  }

  .nav-logo {
    justify-content: center;
    margin-bottom: 8px;
    order: 1;
  }

  .nav-toggle {
    position: absolute;
    top: 12px;
    right: 15px;
    order: 3;
  }

  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  /* Hero-Section Anpassungen */
  .hero {
    margin-top: 70px;
  }

  .booking-form-wrapper {
    padding: 1rem;
  }

  .booking-section-block {
    padding: 1.5rem;
  }

  .booking-date-input,
  .booking-text-input,
  .booking-customer-input,
  .booking-time-select {
    font-size: 1rem;
    padding: 12px;
  }

  .booking-section-title {
    font-size: 1.1rem;
  }

  .booking-section-title i {
    font-size: 1rem;
  }

  .booking-service-main h4 {
    font-size: 1.1rem;
  }

  .booking-service-description {
    font-size: 0.9rem;
  }

  .booking-feature-tag {
    font-size: 0.75rem;
  }

  .booking-time-separator {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .availability-message {
    padding: 1rem;
  }

  .success-icon {
    font-size: 2rem;
  }

  .success-content h4 {
    font-size: 1.1rem;
  }

  .service-features {
    gap: 8px;
  }

  .feature-tag {
    font-size: 0.75rem;
  }

  .booking-form-container {
    padding: 1rem;
  }

  .admin-section {
    padding: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .success-actions .btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .hero-card {
    padding: 1rem;
    margin-top: 2rem;
  }

  .kpi-item {
    padding: 1rem;
    min-height: auto;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Logo styles for very small screens */
  .logo-image {
    height: 60px;
  }

  .admin-logo {
    height: 38px;
  }

  .footer-logo-image {
    height: 65px;
  }

  .admin-header-content {
    gap: 0.75rem;
  }

  .admin-header-text h1 {
    font-size: 1.5rem;
  }

  .admin-header-text p {
    font-size: 0.9rem;
  }

  /* Hero Logo responsive adjustments */
  .hero-logo-image {
    max-width: 160px;
  }

  .hero-logo {
    margin-bottom: 1rem;
  }
}

.powered-by-logo-jusa {
  height: 10px;
  width: auto;
}

.powered-by-logo-designnow {
  height: 10px;
  width: auto;
}

.powered-by-logos {
  display: flex;
  justify-content: center;
  align-items: end;
}

.powered-by-text {
  font-size: 0.7rem;
}

.booking-btn {
  font-size: 1rem;
  padding: 1.2rem 2rem;
  min-width: 200px;
}

.booking-section-title {
  font-size: 1.4rem;
  /* Text-Umbrechen für lange Titel */
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.booking-summary-item {
  font-size: 1rem;
  /* Mobile Flexbox Layout für bessere Darstellung */
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.8rem 0;
}

.booking-summary-item span:first-child {
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.booking-summary-item span:last-child {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
  /* Sicherstellen dass Text umbricht */
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.booking-summary-item.booking-total {
  font-size: 1.2rem;
  /* Mobile Layout für Gesamtsumme */
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1.2rem;
}

.booking-summary-item.booking-total span:first-child {
  font-size: 1rem;
}

.booking-summary-item.booking-total span:last-child {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2e68b0;
}

.booking-time-separator {
  font-size: 1.2rem;
  margin: 0 4px;
}

/* Zusätzliche Verbesserungen für Buchungsübersicht auf sehr kleinen Bildschirmen */
.booking-summary-content {
  padding: 1rem;
  border-radius: 12px;
  border-width: 2px;
}

.booking-summary-item {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
  /* Verbesserter Textumbruch */
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.booking-summary-item span:first-child {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  display: block;
}

.booking-summary-item span:last-child {
  font-size: 0.95rem;
  display: block;
  /* Extra starker Textumbruch für sehr kleine Bildschirme */
  max-width: 100%;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.booking-summary-item.booking-total {
  padding: 1rem;
  font-size: 1rem;
}

.booking-summary-item.booking-total span:first-child {
  font-size: 0.9rem;
}

.booking-summary-item.booking-total span:last-child {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.booking-summary-services {
  padding: 0.8rem;
  margin: 0.5rem 0;
}

.booking-summary-services .booking-summary-item {
  font-size: 0.85rem;
  padding: 0.3rem 0;
}

/* Buchungsformular Verbesserungen für sehr kleine Bildschirme */
.booking-section-block {
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.booking-service-description {
  font-size: 0.9rem;
  line-height: 1.4;
  /* Verbesserter Textumbruch */
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.booking-feature-tag {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  /* Responsive Text-Behandlung */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  min-width: auto;
  max-width: 100%;
}

/* Allgemeine mobile Responsive-Verbesserungen */
@media (max-width: 768px) {
  /* Container und Wrapper Verbesserungen */
  .booking-form-wrapper {
    padding: 1.5rem;
    /* Verhindern von horizontalem Overflow */
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .booking-section-block {
    padding: 1.8rem;
    margin-bottom: 2rem;
    /* Verhindern von Text-Overflow */
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Input und Select Verbesserungen */
  .booking-date-input,
  .booking-text-input,
  .booking-select,
  .booking-time-select,
  .booking-customer-input {
    /* Bessere mobile Darstellung */
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    /* Text-Overflow verhindern */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Service-Tags responsive machen */
  .booking-feature-tags {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .booking-feature-tag {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 100%;
    /* Text-Umbrechen ermöglichen */
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 1.2;
  }

  /* Service-Header responsive */
  .booking-service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Adressfelder mobile Layout */
  .booking-address-street,
  .booking-address-number,
  .booking-address-zip,
  .booking-address-city {
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Button Verbesserungen */
  .booking-btn {
    width: 100%;
    max-width: none;
    margin: 0.5rem 0;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    /* Text-Umbrechen für Button-Text */
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Extra kleine Bildschirme */
  .booking-form-wrapper {
    padding: 1rem;
  }

  .booking-section-block {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  /* Input-Felder für sehr kleine Bildschirme */
  .booking-date-input,
  .booking-text-input,
  .booking-select,
  .booking-time-select,
  .booking-customer-input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  /* Titel und Labels */
  .booking-section-title {
    font-size: 1.1rem;
    gap: 8px;
    /* Multi-line Titel ermöglichen */
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .booking-section-title i {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  /* Feature-Tags für sehr kleine Bildschirme */
  .booking-feature-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    min-width: 100px;
    /* Stack tags vertically wenn nötig */
    flex-basis: calc(50% - 0.3rem);
  }

  /* Service-Beschreibungen */
  .booking-service-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Button für sehr kleine Bildschirme */
  .booking-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    min-height: 50px;
  }

  /* Zeit-Separator */
  .booking-time-separator {
    font-size: 1rem;
    margin: 0 2px;
  }
}

/* Mobile Responsive Verbesserungen für Reinigungsservices und AGBs */
@media (max-width: 768px) {
  /* Reinigungsservice-Optionen auf mobile umstellen */
  .booking-radio-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .booking-radio-custom {
    align-self: flex-start;
    margin-top: 0;
  }

  .booking-service-detail {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }

  .booking-service-detail strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .booking-reinigung-price {
    font-size: 1.1rem;
    margin: 0.3rem 0;
    padding: 0.2rem 0.6rem;
  }

  .booking-service-detail small {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  /* Reinigungstypen Grid auf mobile anpassen */
  .booking-reinigung-types {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-reinigung-type {
    border-radius: 12px;
    border-width: 2px;
  }

  /* AGB-Checkbox auf mobile umstellen */
  .booking-agb-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .booking-agb-custom {
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  /* Checkbox-Gruppe mobile Anpassungen */
  .booking-checkbox-group {
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  /* Sehr kleine Bildschirme - weitere Optimierungen */
  .booking-radio-option {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .booking-radio-custom {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .booking-reinigung-type
    input[type="radio"]:checked
    + .booking-radio-custom::after {
    width: 8px;
    height: 8px;
  }

  .booking-service-detail strong {
    font-size: 0.95rem;
  }

  .booking-reinigung-price {
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
  }

  .booking-service-detail small {
    font-size: 0.8rem;
  }

  .booking-reinigung-options {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .booking-agb-label {
    font-size: 0.9rem;
    gap: 0.6rem;
  }

  .booking-agb-custom {
    width: 20px;
  }

  .booking-agb-label
    input[type="checkbox"]:checked
    + .booking-agb-custom::after {
    font-size: 12px;
  }

  .booking-checkbox-group {
    padding: 1.2rem;
    border-radius: 10px;
  }
}

/* ==========================================================================
   MULTI-STEP BOOKING STYLES
   ========================================================================== */

/* Progress Indicator */
.booking-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  padding: 0 1rem;
  position: relative;
}

.booking-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e9ecef;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  /* background: #ffffff; */
  padding: 0 1rem;
  min-width: 80px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
}

.step-label {
  font-size: 14px;
  color: #cfe8ff;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: #007bff;
  color: white;
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.progress-step.active .step-label {
  color: #ffffff;
  font-weight: 600;
}

.progress-step.completed .step-number {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.progress-step.completed .step-number::before {
  content: none; /* Checkmark entfernt */
  display: inline-block;
  font-family: "Font Awesome 5 Free";
}

.progress-step.completed .step-label {
  color: #28a745;
}

/* Booking Steps */
.booking-step {
  animation: fadeIn 0.5s ease-in-out;
}

.booking-step[style*="display: none"] {
  display: none !important;
}

.booking-step-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
}

.booking-step-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.booking-step-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.booking-step-header i {
  margin-right: 0.5rem;
}

/* Step Navigation */
.booking-step-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-between;
  align-items: center;
}

.booking-step-next,
.booking-step-back {
  flex: 1;
  max-width: 250px;
}

.booking-step-back {
  order: 1;
}

.booking-step-next {
  order: 2;
}

/* Section Subtitles */
.booking-section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 1.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.booking-section-subtitle i {
  margin-right: 0.5rem;
  color: #007bff;
}

.booking-vehicle-subtitle,
.booking-address-subtitle,
.booking-services-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin: 1.5rem 0 1rem 0;
  padding-left: 0.5rem;
  border-left: 3px solid #007bff;
}

.booking-vehicle-subtitle i,
.booking-address-subtitle i,
.booking-services-subtitle i {
  margin-right: 0.5rem;
  color: #007bff;
}

/* Reservation Timer Overlay */
.reservation-timer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reservation-timer {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.timer-container {
  padding: 0;
}

.timer-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timer-icon {
  font-size: 2rem;
  opacity: 0.9;
}

.timer-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.timer-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.timer-body {
  padding: 1.5rem;
}

.timer-display-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.timer-label {
  font-weight: 600;
  color: #495057;
  font-size: 1rem;
}

.timer-display {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
  font-family: "Courier New", monospace;
}

.timer-progress {
  background: #e9ecef;
  border-radius: 10px;
  height: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.timer-progress-bar {
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.timer-progress-green {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.timer-progress-yellow {
  background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.timer-progress-red {
  background: linear-gradient(90deg, #dc3545, #e83e8c);
}

.timer-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #6c757d;
}

.timer-warning i {
  color: #007bff;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .booking-progress {
    margin: 1rem 0;
    padding: 0 0.5rem;
  }

  .progress-step {
    min-width: 60px;
    padding: 0 0.5rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 0.25rem;
  }

  .step-label {
    font-size: 12px;
  }

  .booking-step-header {
    margin-bottom: 1.5rem;
    padding: 1rem;
  }

  .booking-step-header h3 {
    font-size: 1.25rem;
  }

  .booking-step-header p {
    font-size: 0.9rem;
  }

  .booking-step-navigation {
    flex-direction: column;
    gap: 0.75rem;
  }

  .booking-step-next,
  .booking-step-back {
    max-width: none;
    width: 100%;
  }

  .booking-step-back {
    order: 2;
  }

  .booking-step-next {
    order: 1;
  }

  .reservation-timer-overlay {
    padding: 0.5rem;
  }

  .timer-header {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .timer-icon {
    font-size: 1.5rem;
  }

  .timer-info h4 {
    font-size: 1.1rem;
  }

  .timer-body {
    padding: 1rem;
  }

  .timer-display-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .timer-display {
    font-size: 1.5rem;
  }

  .timer-warning {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .booking-progress::before {
    display: none;
  }

  .progress-step {
    min-width: 50px;
    padding: 0 0.25rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .step-label {
    font-size: 11px;
  }

  .booking-step-header {
    padding: 0.75rem;
  }

  .booking-step-header h3 {
    font-size: 1.1rem;
  }

  .booking-step-header p {
    font-size: 0.85rem;
  }

  .booking-section-subtitle {
    font-size: 1.1rem;
  }

  .booking-vehicle-subtitle,
  .booking-address-subtitle,
  .booking-services-subtitle {
    font-size: 1rem;
  }
}

/* Animation for step transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-step {
  animation: slideIn 0.4s ease-out;
}

/* Kompakter Reservation Timer */
.reservation-timer-compact {
  background: #28a745;
  color: white;
  padding: 0.5rem 1rem; /* Kompakteres Padding */
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  max-width: 95%;
  animation: slideInCompact 0.5s ease-out;
}

@keyframes slideInCompact {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.timer-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timer-compact-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-compact-icon {
  font-size: 1.2rem; /* Kleineres Icon */
}

.timer-compact-info h4 {
  margin: 0;
  font-size: 0.9rem; /* Kleinere Schrift */
  font-weight: 700;
}

.timer-compact-info p {
  margin: 0;
  font-size: 0.8rem; /* Kleinere Schrift */
  opacity: 0.9;
}

.timer-compact-display {
  font-size: 1.2rem; /* Kleinere Schrift */
  font-weight: 700;
}

.timer-compact-progress {
  height: 6px; /* Dünnerer Balken */
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}
