body {
  font-family: 'Segoe UI', sans-serif;
  margin: 20px;
  background-color: #f7f9fc;
  color: #333;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.login-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #0078d4;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
  background-color: white;
}

th, td {
  padding: 4px;
  border: 1px solid #ddd;
  text-align: center;
  min-width: 80px;
  max-width: 300px;
  overflow: visible;
  text-overflow: ellipsis;
  white-space: wrap;
}

th {
  background-color: #f2f2f2;
  cursor: pointer;
}

input {
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
  min-width: 40;
}

select {
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
  max-width: 120px;
}

button {
  padding: 2px 2px;
  cursor: pointer;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}

#searchInput {
  max-width: 200px;
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.mfa-section {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mfa-code {
  flex: 1;
  text-align: center;
  font-weight: bold;
  min-width: 60;
}

.combo-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

/* .email {
  flex: 1;
  text-align: left;
  min-width: 90;
} */

.combo-cell input.password {
  flex: 1;
  min-width: 80;
}
