/* Configuration error page styles - shown before Angular loads */
.config-error-static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F2F3F5;
  z-index: 9999;
}

.config-error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px;
  min-height: 100vh;
  font-family: Inter, sans-serif;
}

.config-error-content h1 {
  color: #133445;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}

.config-error-content p {
  color: #1F4E66;
  font-size: 18px;
  margin-bottom: 32px;
}

.config-error-content button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: #2A6480;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.config-error-content button:hover {
  background-color: #1F4E66;
}

.config-error-content button:active {
  background-color: #133445;
}
