.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #f4fbfc;
  padding: 20px;
}
.auth-container {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.auth-container h2 {
  color: #004d61;
  margin-bottom: 10px;
  font-size: 28px;
}
.auth-container p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #cfd8dc;
  border-radius: 8px;
  font-size: 16px;
  outline: 0;
  transition: border-color 0.3s;
}
.form-group input:focus {
  border-color: #0097a7;
  box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.1);
}
.btn-auth {
  width: 100%;
  padding: 14px;
  background-color: #0097a7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-auth:hover {
  background-color: #007c91;
}
.error-msg {
  background-color: #ffebee;
  color: #c62828;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid #ffcdd2;
}
.success-msg {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid #c8e6c9;
}
.auth-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}
.auth-footer a {
  color: #0097a7;
  text-decoration: none;
  font-weight: 600;
}
.auth-footer a:hover {
  text-decoration: underline;
}
.dashboard-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: #e0f7fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #0097a7;
}
.welcome-text h2 {
  color: #004d61;
  margin-bottom: 5px;
}
.welcome-text p {
  color: #555;
  margin: 0;
}
.btn-new {
  background-color: #0097a7;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.btn-new:hover {
  background-color: #007c91;
}
.bookings-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.bookings-table td,
.bookings-table th {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.bookings-table th {
  background-color: #0097a7;
  color: #fff;
}
.bookings-table tr:last-child td {
  border-bottom: none;
}
.btn-delete {
  display: inline-block;
  padding: 8px 15px;
  background-color: #dc3545;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.btn-delete:hover {
  background-color: #c82333;
}
.no-bookings {
  text-align: center;
  padding: 50px;
  background: #f9f9f9;
  border-radius: 10px;
  color: #666;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}
@media (max-width: 768px) {
  .dashboard-container {
    padding: 50px;
    margin: 25px auto;
    width: 95%;
  }
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .btn-new {
    width: 100%;
    text-align: center;
    display: block;
  }
  .welcome-banner {
    padding: 15px;
  }
}
