/* Estilização Global */
* {
  font-size: 14px;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  background: linear-gradient(to top right, #179c9cc4 80%, #e9c66de6 100%);
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

/* Estilização do Login */
.divLogin {
  margin-right: 20px;
}

.divLogin input {
  height: 35px;
  font-size: 15px;
  width: 100%;
  padding: 5px;
  border: 1px solid #bbb;
  border-radius: 5px;
}



.filtros {
  display: flex;
  justify-content: space-around;
  margin-top: 5%;
}

/* Botões */
.button_extracao,
.buttons {
  border: none;
  background-color: #C3EBE8;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  font-weight: bold;
  margin-left: 4px;
}

select {
  border-radius: 4px;
  height: 35px;
  width: 100px;
}

#filterSelectDataInicio,
#filterSelectDataFinal {
  border-radius: 4px;
  border: 0;
  padding: 0 8px;
  height: 35px;
}

.container-engloba {
  width: calc(100% - 300px);

  @media (max-width: 1200px) {
    width: calc(100% - 40px);
  }
}

.engloba-graficos {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}

.engloba-graficos-main {
  margin-top: 10px;
  border-radius: 4px;
  background-color: white;
}


.button_extracao:hover,
.buttons:hover {
  background-color: #4AC4B9;
  transform: scale(1.05);
}

/* Estilização do Formulário */
.all-form {
  background-color: rgba(255, 255, 255, 0.95);
  width: 95%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
}

.container-form-geral {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.container-input-details-geral {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 3px solid #4AC4B9;
  padding: 15px 0;
}

.container-input-details1,
.container-input-details2 {
  width: 48%;
}

/* Labels e Inputs */
.label-input-details {
  font-size: 15px;
  font-weight: bold;
  color: #444;
  display: block;
  margin-bottom: 5px;
}

.input-default,
.input-default-comments {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #bbb;
  outline: none;
  transition: 0.3s;
}

.input-default-comments {
  height: 120px;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #008B8B;
  box-shadow: 0 0 6px rgba(0, 139, 139, 0.5);
}

/* Títulos */
h1 {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
  text-transform: uppercase;
}

.sub-title-details {
  text-align: center;
  font-family: fantasy;
  text-transform: uppercase;
  color: #006666;
  font-size: 20px;
}

/* Área de Botão de Envio */
.submit-container {
  display: flex;
  justify-content: center;
  margin: 50px 0 30px;
}

/* Responsividade */
@media (max-width: 768px) {
  .all-form {
    width: 95%;
    padding: 20px;
  }

  .container-input-details1,
  .container-input-details2 {
    width: 100%;
  }

  .header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .submit-container {
    width: 100%;
  }

  .filtros {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Estilização da Tabela */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.table-style {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

.table-style thead {
  background: linear-gradient(to right, #179c9cc4, #e9c66de6);
  color: white;
}

.table-style th,
.table-style td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.table-style th {
  font-size: 15px;
  font-weight: bold;
}

.table-style tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table-style tbody tr:hover {
  background-color: rgba(23, 156, 156, 0.2);
  transition: 0.3s;
}

/* Responsividade */
@media (max-width: 768px) {

  .table-style th,
  .table-style td {
    padding: 10px;
    font-size: 13px;
  }
}

/* Navbar */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #006666;
  text-transform: uppercase;
}

.navbar .nav-links {
  display: flex;
  gap: 20px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

.navbar .nav-links a:hover {
  background-color: #4AC4B9;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .navbar .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
}