* {
  box-sizing: border-box;
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {  
  background: #f7f7f7;
  font-size: 16px;
}

.title {
  font-size: large;
  font-weight: 600;
  top: 5px;
  padding: 4px;
}

.content-head {
  display: flex;
  gap: 2rem;
  border: none;
  margin-bottom: 2px;        
}

.date {
  width: 35%;          
  padding: 10px;
  font-size: 16px;      
  border-radius: 6px;
  border: none;
  outline: none;
}

.date:focus {
  outline: none;
  box-shadow: none;
}

.date {
  -webkit-tap-highlight-color: transparent;
}

.fornecedor {
  background: #f1efef;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.id-fornecedor {
    margin-top: 6px;
    text-align: center;
    background-color: #cb4c59;
    padding: 4px;
    color: white;
    border-radius: 2px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
  margin-top: 6px;
  -webkit-overflow-scrolling: touch;
}

th,
td {
  padding: 1px 6px;
  text-align: center;
  font-size: 15px;
}

td:first-child,
th:first-child {
  text-align: left;
  min-width: 120px;
}

td:last-child {
  justify-content: center;
  align-items: center;
  min-width: 20px;
  padding: 10px;
}

th {
  background: #434141;
  border: 1px solid;
  color: #f6f1f1;
  padding: 10px;
  top: 4px;
  border-radius: 0.3rem;
  z-index: 2;
}

input[type="number"] {
  width: 2.5rem;
  text-align: center;
  padding: 2px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
}

.qtd-input,
.qtd-input2 {
  appearance: none;
  -moz-appearance: textfield;
  outline: none;
}

.qtd-input:focus {
  outline: none;
  box-shadow: none;
}

.qtd-input2:focus {
  outline: none;
  box-shadow: none;
}

.qtd-input,
.qtd-input2 {
  -webkit-tap-highlight-color: transparent;
}

.qtd-input::-webkit-inner-spin-button,
.qtd-input::-webkit-outer-spin-button,
.qtd-input2::-webkit-inner-spin-button,
.qtd-input2::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="checkbox"] {
  transform: scale(1.5);
  cursor: pointer;
  accent-color: #28a745;

}

tr.recebido {
  background-color: #9df4b3;
}

.input-ok {
  background-color: #9df4b3;
  border: 1px solid #28a745; 
}

.status {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

.status.pendente {
  background: #ee5f6b;
  color: #fbfafa;
}

.status.ok {
  background:  #26dc53;
  color: #181a19;
}


@media (min-width: 768px) {
  body {
    padding: 15px;
  }

  .content-head {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .date {
    width: 100%;
  }

  th,
  td {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .fornecedor {
    padding: 15px;
  }

  table {
    display: table;
    overflow: visible;
    white-space: normal;
  }

  input[type="number"] {
    width: 80px;
  }
}

.footer {
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: #f2ecec;
  background: #232121;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .footer {
    font-size: 13px;
  }
}
