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: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.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;
}