/* Card principal com fundo gradiente cinza com toques de gold/amarelo e sufixo -23 */
.englib {
  width: 100%;
float: left;
margin: 0px 0% 0% 0%;
}

.card-trt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-left: 3px solid green;
  border-radius: 4px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 20px;
}

.card-trt:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-icon-trt {
  font-size: 2rem;
  color: #007BFF;
  margin-right: 15px;
}

.card-text-trt {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}


.toast-89 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1;
  display: none;
  align-items: center;
  background-color: #1e1e2d;
  color: #fff;
  border-radius: 8px;
  padding: 16px;
  width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Tornar o toast visível */
.toast-89.show {
  opacity: 1;
  transform: translateY(0);
}

/* Ícone */
.toast-icon-89 svg {
  width: 32px;
  height: 32px;
  color: #ff6b6b;
  margin-right: 16px;
  flex-shrink: 0;
}

/* Corpo do toast */
.toast-body-89 {
  flex-grow: 1;
}

.toast-title-89 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #ff6b6b;
}

.toast-message-89 {
  font-size: 14px;
  margin: 4px 0 0;
  color: #c4c4c4;
}

/* Botão de fechar */
.toast-close-89 {
  background: none;
  border: none;
  color: #c4c4c4;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.toast-close-89:hover {
  color: #fff;
}


.toast-1 {
  position: fixed;
  bottom: 34px;
  right: 24px;
  z-index: 1;
  display: none;
  align-items: center;
  background-color: #e8f5e9; /* Verde claro */
  color: #1b5e20; /* Verde escuro */
  border-radius: 8px;
  padding: 16px;
  width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Tornar o toast visível */
.toast-1.show-1 {
  opacity: 1;
  transform: translateY(0);
}

/* Ícone */
.toast-icon-1 svg {
  width: 32px;
  height: 32px;
  color: #4caf50; /* Ícone verde */
  margin-right: 16px;
  flex-shrink: 0;
}

/* Corpo do toast */
.toast-body-1 {
  flex-grow: 1;
}

.toast-title-1 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #2e7d32; /* Título verde mais escuro */
}

.toast-message-1 {
  font-size: 14px;
  margin: 4px 0 0;
  color: #388e3c; /* Verde médio */
}

/* Botão de fechar */
.toast-close-1 {
  background: none;
  border: none;
  color: #66bb6a; /* Verde claro no botão */
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.toast-close-1:hover {
  color: #2e7d32; /* Verde mais escuro no hover */
}


.lado3 {width: 21%;
  float: left;
  margin: 78px 0% 20px 2%;
  min-height: 500px;
  border-radius: 3px;
}

#loading-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f3f3f3;
  z-index: 1;
}

#loading-bar {height: 100%;
  width: 0;
  background-color: #3498db;
  transition: width 0.1s ease;
}