* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: rgb(34, 34, 34);
}

ol,
ul {
  list-style: none;
}

hr {
  margin: 0.5rem 0 1rem 0;
  border: 0.5px solid #ddd;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

thead {
  height: 2rem;
  border-bottom: 1px solid #ddd;
}

th {
  font-weight: 600;
  color: rgb(63, 63, 63);
  font-size: 0.9rem;
  background-color: #f7f7f7;
}

th {
  padding: 0.7rem 0;
}

tr:hover {
  background-color: #f9f9f9;
}



/* Estilo padrão do link dentro da tabela */
table a {
  color: inherit;
  text-decoration: none;
}

/* Estilo do link dentro da tabela quando passa o mouse sobre ele */
table a:hover {
  text-decoration: underline;
}
/* Estilo padrão do link com a classe 'meu-link' */
.meu-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer; /* Muda o cursor ao passar o mouse sobre o link */
}

/* Estilo do link com a classe 'meu-link' quando passa o mouse sobre ele */
.meu-link:hover {
  text-decoration: none !important; /* Remove o sublinhado ao passar o mouse sobre o link */
}



th:first-child,
td:first-child {
  padding-left: 0.7rem;
}

th:last-child,
td:last-child {
  padding-right: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

td {
  font-size: 0.9rem;
  padding: 1rem 0;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
a {
  text-decoration: none; /* Remove o sublinhado padrão */
  color: inherit; /* Mantém a cor padrão do texto do link */
}

/* Estilo opcional para alterar a cor ao passar o mouse sobre o link */
a:hover {
  color: #007bff; /* Cor do link ao passar o mouse (ajuste conforme necessário) */
}

.custom-width-modal .modal-dialog {
width: 80%;
max-width: none;
}
.no-border td {
vertical-align: top;
border: none; /* ou border: 0; */

}
  