body {
  background-color: #e6e6e6;
  line-height: 1.6;
  color: #000000;
}


h1 {
  font-family: Arial, Helvetica, sans-serif
}


.container {
  max-width: 1600px;
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: max-content !important;
  min-width: 100% !important;
  overflow: visible !important;
}

.table-container {
  overflow-x: auto !important;
  overflow-y: visible !important;
  position: relative !important;
}

.table th:first-child,
.table td:first-child {
  position: sticky !important;
  left: 0 !important;
  background: #fff !important;
  z-index: 20 !important;
  border-right: 1px solid #ddd !important;
}



.table td,
.table th {
  table-layout: auto;
  height: 40px;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking_entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 10px 20px;
  gap: 10px;
}

.login-container {
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 100px 60px;
  text-align: center;
  box-shadow: 0 0 20px 4px #889ec066,
    0 0 40px 8px #c3ebff66;
}

.login-container form p {
  margin-bottom: 20px;

}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #b4b4b4;
  background-color: #e2f6ff;
}

.login-container label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
}

.bg-custom {
  background-color: #a6d3e2 !important;
  border-radius: 1rem;
}
/* Gleiche Höhe und Innenabstände */
.navbar .form-select,
.navbar .btn {
    height: 40px; /* gleiche Höhe */
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gleichmäßige Abstände */
.navbar .d-flex.align-items-center.gap-2 {
    gap: 1.5 rem; /* gleicher Abstand zwischen allen Elementen */
}

/* Entfernt unterschiedliche Außenabstände */
.navbar form {
    margin: 0;
}

/* Optionale visuelle Feinjustierung */
.navbar .form-select {
    background-color: #fff; /* hell und lesbar */
    color: #000;
    border: 1px solid #6c757d; /* dezent dunkler Rand */
    min-width: 140px; /* gleichbleibende Breite */
}

/* Hover- und Fokus-Effekt, passend zu Buttons */
.navbar .form-select:hover,
.navbar .form-select:focus {
    border-color: #fff;
    background-color: #f8f9fa;
    box-shadow: none;
}


