body {
  background: #fafafa;
  color: #333333;
  margin-top: 4rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

.bg-steel {
  background-color: #5f788a;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.article-title {
  color: #444444;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}
/* Adicione estas regras ao arquivo static/css/main.css */

/* Estilos para o gerador de documentos */
.step-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  background-color: #f8f9fa;
  margin-top: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-card h5 {
  color: #0d6efd;
  margin-bottom: 15px;
  font-weight: 600;
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.navigation-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.progress-container {
  margin: 20px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.progress {
  height: 10px;
  border-radius: 5px;
}

.uploaded-file {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 12px;
  background-color: #d1e7dd;
  border-radius: 5px;
  border-left: 4px solid #20c997;
}

.uploaded-file i {
  margin-right: 10px;
  color: #0d6efd;
  font-size: 1.2em;
}

#message-history {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

#message-history p {
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-bottom: 8px;
  border-left: 3px solid #6c757d;
}

#loading-indicator {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#loading-indicator .spinner-border {
  width: 3rem;
  height: 3rem;
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.step-card, #message-history p, .uploaded-file {
  animation: fadeIn 0.4s ease;
}