/* Error page styles */
.error-page {
  padding: 40px 20px;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.error-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.error-image {
  max-width: 300px;
  margin: 0 auto 30px;
}

.error-image img {
  width: 100%;
  height: auto;
}

.error-title {
  color: #2E6D4D;
  font-size: 2rem;
  margin-bottom: 20px;
}

.error-content {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.error-suggestions {
  text-align: left;
  max-width: 400px;
  margin: 20px auto;
  padding-left: 20px;
}

.error-suggestions li {
  margin-bottom: 10px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.error-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: #78BF9B;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.error-button:hover {
  background: #2E6D4D;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(120, 191, 155, 0.3);
}

.error-button i {
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .error-container {
    padding: 30px 20px;
  }

  .error-title {
    font-size: 1.8rem;
  }

  .error-actions {
    flex-direction: column;
    gap: 10px;
  }

  .error-button {
    justify-content: center;
  }
}