:root {
  --red: rgb(255, 26, 26);
  --blue: rgb(26, 13, 76);
  --light: #f1f8ff;
  --dark: rgb(15, 23, 43);
  --gradient-body: linear-gradient(
    0deg,
    rgba(26, 13, 76, 1) 10%,
    rgba(255, 26, 26, 1) 47%,
    rgba(0, 0, 0, 1) 94%
  );
  --text-primary: #8fc714;
  --btn-submit: #035da1;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: var(--light);
  width: 100%;
  font-size: 12pt;
  border-collapse: collapse;
}
thead{
    border-bottom: 1px solid var(--text-primary);
}
h1{
    font-size: 18pt;
}
h2{
    font-size: 16pt;
}
h3{
    font-size: 14pt;
}
a{
    text-decoration: none;
}
ol li{
    list-style: none;
}
ul li{
    list-style: none;
}
small, small a{
    font-size: 9pt;
}
a{
    color: var(--text-primary);
}
body {
  background: var(--dark);
}
.container {
  max-width: 480px;
  height: 100vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
table{
    background-color: #fff;
}

.header-logo-marker{
    margin-bottom: 10px;
    display: flex;
    /* font-display: 15px; */
    justify-content: flex-end;
    align-items: flex-end;
}
.content {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
.border-line{
    border: 2px solid var(--text-primary);
    padding: 10px;
    border-radius: 8px;
}
.border-line h1{
    width: 100%;
    text-align: center;
}
.form-group{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.row{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.row-request{
    display: none;
}
.input-group{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.input-file{
    background-color: #fff;
}
input, select, textarea{
    padding: 10px;
    color: var(--dark);
    outline: var(--blue);
    border: none;
    background-color: var(--blue);
    color: var(--text-primary);
}
option{
    color: var(--dark);
    padding: 10px;
}
input:hover, select:hover{
    outline: var(--blue);
}
.text-result{
    margin-top: 15px;
    color: var(--text-primary);
}
.btn{
    padding: 10px;
    border: none;
    font-size: 14pt;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
.btn-submit{
    background-color: var(--text-primary);
    color: var(--dark);
}

.btn-link{
    text-align: center;
    color: var(--text-primary);
}
.btn-link p{
    text-align: center;
    color: var(--text-primary);
}
#response {
    display: none;
    background-color: #a5ff99;
    color: #097f00;
    padding: 10px;
    border-radius: 10px;
}

#error {
    display: none;
    background-color: #ff8989;
    color: #b00000;
    padding: 10px;
    border-radius: 10px;
}
.card{
    min-width: 220px;
    max-width: 300px;
    border-radius: 15px;
    padding: 12px;
}
.card-info{
    box-shadow: 0px 0px 15px 0px var(--blue);
    background-color: var(--btn-submit);
}
.print-report{
    background-color: var(--light);
    padding: 20px;
    color: var(--dark);
}
.btn-group{
    display: flex;
    gap: 20px;
}
.btn-print, .btn-link{
    background-color: var(--blue);
}
.btn-cancel{
    background-color: var(--red);
    color: var(--light);
    width: max-content;
}
.text-dark{
    color: var(--dark) !important;
}
.assinaturas{
    text-align: center;
    margin-top: 15px;
}
.text-justify{
    text-align: justify;
}
.text-uppercase{
    text-transform: uppercase;
}
thead{
    background-color: var(--blue);
}
td,th{
    width: max-content;
    text-align: left;
}
.first-column{
    width: 80px;
}
.update-group{
    display: flex;
    flex-direction: row;
}
.btn-send{
    width: max-content;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
 /* Estilizando as opções */
 option {
    padding: 10px;
    background-color: var(--gradient-body);
    color: var(--btn-submit);
    padding: 8px;
}

/* Estilizando a opção selecionada */
select:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}


.footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

}

.content-footer{
    max-width: 480px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-footer section{
    width: max-content;
}
.content-footer .mdi{
   font-size: 28pt;
}
.text-small{
    font-size: 10pt;
}
.balanco-group{
    max-width: 1024px;
}
.btn-add{
    width: 40px;
    height: 40px;
    background-color: var(--btn-submit);
}
.btn-add .mdi{
    color: var(--text-primary);
    font-size: 14pt;
}
.text-right{
    text-align: right !important;
}
.text-center{
    text-align: center !important;
}
th,td{
    padding: 5px;
    font-size: 9pt;
    border: none;
    color: #333;
}
th{
 color: var(--light);
}
tfoot tr th{
    color: var(--dark);
    font-weight: 900;
}
tr:nth-child(2n){
    background-color:#e4e4e4;
}
.action-group{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
}
.action-group a{
    width: max-content;
}
.action-group form{
    width: max-content;
    display: flex;
    flex-direction: row;
}
.action-group form select{
    width: 120px;
    background-color: var(--light);
}
.doc_img img{
    width: 100%;
    height: 50vw;
    object-fit: cover;
    object-position: center;
  }
/* Estilos para a impressão */
@media print {
    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
    }
    caption,thead{
        color: #333;
    }
    .all-info#printDiv {
      padding: 10px;
      border: 1px solid #000;
      background-color: #fff;
    }
    
    hr, .noprint{
      display: none;
    }
    h1 {
      font-size: 18px;
      color: #333;
      margin-bottom: 10px;
    }
  
   li, p {
      font-size: 14px;
      color: #000;
      text-align: justify;
    }
    table td{
        color: #333 !important;
    }
    p.assinaturas{
        text-align: center;
    }
}
/* @media screen and (max-width: 375px) {
    .row{
        flex-direction: column;
    }
} */