/* Existing styles... */
body {
  background-color: #f8f9fa;
}

.table-bg-white {
  background-color: #ffffff;
}

/* Auth Pages Styles */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 40px); /* Adjusted since navbar is hidden */
}

.login-card {
  width: 400px;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
