body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f5f9;
  margin: 20px;
  color: #1a1a1a;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b4f6c;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

#filtro {
  margin-bottom: 16px;
  padding: 10px 14px;
  width: 100%;
  max-width: 500px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

#indexlist {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#indexlist th {
  background-color: #0b4f6c;
  color: #fff;
  padding: 14px 10px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

#indexlist tr:first-child a {
  background-color: #0b4f6c;
  color: #fff;
  font-weight: 600;
  padding: 14px 10px;
  font-size: 14px;
  height: auto;
}

#indexlist td {
  padding: 12px 10px;
  border-top: 1px solid #eee;
  vertical-align: middle;
  font-size: 14px;
}

#indexlist a {
  color: #0b4f6c;
  text-decoration: none;
}

#indexlist a:hover {
  text-decoration: underline;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.logo-coids {
  height: 90px;
  object-fit: contain;
}

/* Alternância de linhas */
tr.odd {
  background-color: #f9f9f9;
}
tr.even {
  background-color: #ffffff;
}

/* Ícones */
td.indexcolicon img {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

/* Rodapé */
.footer-note {
  font-size: 13px;
  color: #777;
  margin-top: 20px;
  text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
  #indexlist {
    font-size: 13px;
  }

  #filtro {
    width: 100%;
  }
}
