/* Container do card */
.card {
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

/* Cabeçalho do card */
.card-header {
  background-color: #adb5bd;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 1rem;
}

/* Lista de itens */
.list-group {
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item {
  padding: 12px 16px;
  font-size: 0.95rem;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Remove a borda do último item */
.list-group-item:last-child {
  border-bottom: none;
}

.list-group-item a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  flex-grow: 1;
  margin-right: 8px;
}

.list-group-item a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Ícone setinha */
.list-group-item i {
  font-size: 0.85rem;
  color: #999;
  margin-left: auto;
}

/* Rodapé do card */
.card-footer {
  background-color: #f1f1f1;
  text-align: right;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-top: 1px solid #ccc;
}