body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  cursor: auto;
}

header .green-belt {
  background-color: #008036;
  height: 40px;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
}

h1 {
  margin-top: 60px;
}

#uploadBtn {
  width: 150px;
  display: block;
  /* margin-top: 5px; */
  border: none;
  background-color: #4caf50;
  padding: 10px;
}

form#uploadForm .btn:hover {
  background-color: #45a049;
  transition: .3s ease;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th,
td {
  border: 1px solid #ccc;
  padding: 0.5rem;
}

th {
  background-color: #f4f4f4;
}

pre {
  background: #eee;
  padding: 10px;
  margin-top: 30px;
  overflow: auto;
  max-height: 500px;
}

.progress {
  position: relative;
}

strong#progressBar {
  margin-top: 50px;
  margin-bottom: 50px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgb(76, 175, 80);
  padding: 10px;
}

div#status {
  margin-top: 30px;
  color: blue;
}

#progressBarFill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #4caf50;
  width: 0%;
  transition: width 0.5s ease-in-out;
  z-index: -1;
}

/* DropZone */
/* Dropzone custom style */
.dropzone {
  border: 2px dashed #4CAF50;
  background-color: #f9f9f9;
  /* border-radius: 12px; */
  padding: 60px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #555;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 20px;
}

.dropzone:hover {
  background-color: #b0ffb0;
  border-color: #388E3C;
}

/* Efeito ao arrastar o arquivo */
.dropzone.dz-drag-hover {
  background-color: #b0ffb0;
  /* verde claro */
  border-color: #2e7d32;
  /* verde escuro */
}


.dropzone .dz-message {
  font-weight: 500;
  color: #333;
}

button.dz-button {
  border: none;
}

.dropzone .dz-preview {
  margin-top: 20px;
}

.dropzone .dz-remove {
  color: #e53935;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.dropzone .dz-error-message {
  color: #d32f2f;
  font-size: 14px;
}

.dropzone .dz-success-mark,
.dropzone .dz-error-mark {
  display: none;
  /* Esconde os ícones padrão */
}

.dropzone .dz-filename {
  font-weight: bold;
  color: #444;
}