@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

.acessorios {
  font-family: 'Roboto', sans-serif;
  width: 90%;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #f1f4fb;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Alerta de sucesso */
.alertaSalvaDadosTipoAcessorio {
  background-color: #eaffea;
  border: 1px solid #80e12b;
  color: #2c4a00;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
}

.alertaEdicao__fechar {
  margin-top: 0.5rem;
  background-color: #003bfc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.alertaEdicao__fechar:hover {
  background-color: #002bb8;
}

/* Tabela */
.acessorios__lista {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.acessorios__th {
  background-color: #003bfc;
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.acessorios__lista__li {
  padding: 0.75rem;
  border-bottom: 1px solid #ddd;
}

.acessorios__lista__input {
  width: 100%;
  padding: 0.5rem;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Botão salvar */
.btn-salvar {
  background-color: #003bfc;
  color: white;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-salvar:hover {
  background-color: #002bb8;
}

/* Responsivo */
@media (max-width: 768px) {
  .acessorios__th,
  .acessorios__lista__li {
    font-size: 14px;
  }

  .acessorios__lista__input {
    font-size: 14px;
  }

  .btn-salvar {
    width: 100%;
    padding: 1rem;
  }
}
