.error-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.error-logo-container {
  margin-bottom: 3rem;
  width: 100%;
  text-align: center;
}

.error-logo {
  max-width: 400px;
  height: auto;
  width: 65%;
}

.error-content {
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 9999;
  width: 520px;
}

.error-title {
  margin-bottom: 10px;
}

.error-message {
  color: #666;
  margin-bottom: 15px;
}

.error-actions {
  margin-top: 25px;
  margin-bottom: 20px;
}

.error-actions h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.error-action-list {
  text-align: left;
  color: #555;
  line-height: 1.8;
}

.error-action-item {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.error-action-item:before {
  content: '•';
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.error-help {
  color: #999;
  font-size: 14px;
  margin-bottom: 20px;
}

.reload-button {
  background-color: #1890ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.reload-button:hover {
  background-color: #40a9ff;
}

/* Estilos do Monitor de Microfrontends */
.mfe-error-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
}

.mfe-error-element {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}

.mfe-error-title {
  color: #cf1322;
  font-weight: bold;
  margin-bottom: 8px;
}

.mfe-error-message {
  color: #434343;
  font-size: 14px;
}

.mfe-error-close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 16px;
  padding: 0;
}

.mfe-error-close-button:hover {
  color: #666;
}

/* loader */
.mfe-root-loader > .loader-content [data-icon='b'] {
  position: absolute;
}
.mfe-root-loader > .loader-content [data-icon='b'] {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes mfeRootLoaderColors {
  0% {
    color: #ff6518;
  }
  30% {
    color: #ff6518;
  }
  35% {
    color: #5889fa;
  }
  60% {
    color: #5889fa;
  }
  65% {
    color: #fbb935;
  }
  95% {
    color: #fbb935;
  }
  to {
    color: #ff6518;
  }
}
.mfe-root-loader > .loader-content {
  width: 200px;
  height: 200px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.mfe-root-loader > .loader-content [data-icon='b'] {
  width: 45%;
  height: 45%;
  margin-left: 4%;
}
.mfe-root-loader > .loader-content [data-icon='spinner'] {
  animation-name: mfeRootLoaderColors;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
