/* App shell styles – extracted from index.html to eliminate unsafe-inline in style-src CSP */

body {
  background-color: #272F4C;
  color: white;
  font-family: 'DM Sans', sans-serif;
}

.page {
  background-color: #272F4C;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  text-align: center;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.portal-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 15px 0 rgba(31, 38, 135, 0.37);
}

.portal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(31, 38, 135, 0.5);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.portal-btn:active {
  transform: translateY(0);
}

h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Inline style replacements */
.portal-logo {
  max-width: 300px;
  margin-bottom: 40px;
}

.portal-heading {
  color: white;
  margin-bottom: 30px;
}

.portal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}
