/* Minimalistic Error Pages Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  line-height: 1.5;
}

.error-container {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}

.error-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e9ecef;
}

.logo-container {
  margin-bottom: 1.5rem;
}

.logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

.error-content {
  margin-bottom: 1.5rem;
}

.error-code {
  font-size: 2.5rem;
  font-weight: 300;
  color: #001f47;
  margin-bottom: 0.5rem;
}

.error-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.75rem;
}

.error-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 auto;
}

.logout-message {
  display: none;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  border: 1px solid #ffeaa7;
  font-size: 0.85rem;
}

.action-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-button {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: white;
  color: #495057;
}

.error-button:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

.error-button.primary {
  background: #001f47;
  color: white;
  border-color: #001f47;
}

.error-button.primary:hover {
  background: #003875;
  border-color: #003875;
}

.error-button.secondary {
  background: white;
  color: #6c757d;
  border-color: #dee2e6;
}

.error-button.secondary:hover {
  background: #f8f9fa;
  color: #495057;
}

/* Legacy support */
.error-link {
  text-decoration: none;
  color: inherit;
}

.error-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 1rem;
}
