body {
  margin: 0;
}
.custom-error-wrapper {
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
  box-sizing: border-box;
}
.custom-error-container {
  max-width: 400px;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.custom-error-icon {
  width: 80px;
  height: 80px;
}
.custom-error-wrapper h1 {
  font-size: 24px;
  margin: 10px 0;
}
.custom-error-wrapper p {
  font-size: 16px;
  color: #666;
}
.custom-error-wrapper .custom-reload-button {
  background: linear-gradient(135deg, #ff7e5f, #ff5964);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(255, 89, 100, 0.2);
  transition: all 0.3s ease-in-out;
}
