body.login-bg {
  background-color: #f2f5f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Poppins", sans-serif;
}

/* home */
.menu-btn {
  background-color: #e0f2fe;
  color: #075985;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.menu-btn:hover {
  background-color: #bae6fd;
  border-color: #0284c7;
  transform: scale(1.03);
}

table {
  border-radius: 0.5rem;
  overflow: hidden;
}

th {
  background-color: #e0f2fe;
}

tr:nth-child(even) {
  background-color: #f9fafb;
}

.input-group input {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.btn-primary {
  background-color: #0072ce;
  border: none;
  border-radius: 25px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #005fa3;
}