#error-container {
  font-family: "Roboto", sans-serif;
  --primary: #007bff;
  --disabled-bg: #e0e0e0;
  --disabled-text: #9e9e9e;
}

#error-container {
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
  padding-top: min(20vh, 11vw);
}

.error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--alert-bg, #fff7e0);
  color: var(--alert, #f6c445);
  font-size: 32px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 1.5em;
  color: #333;
}

p {
  margin: 14px 0;
  color: #666;
  white-space: break-spaces;
  font-size: 17px;
}
.error-action {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  height: 40px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.error-action:hover {
  background-color: #0056b3;
  cursor: pointer;
}

code {
  text-align: left;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-width: 60vw;
  margin: 17px auto;
  max-height: 200px;
  overflow: auto;
}

#detailed-error {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  align-items: center;
}
