/* Zebra nas linhas */
.ant-busca-lista tbody tr.zebra {
  background: #ffffff;
}

.ant-busca-lista tbody tr:not(.zebra) {
  background: #f8f8f8;
}

/* Paginação */
.ant-busca-pagination {
  text-align: center;
  margin-top: 16px;
}

.ant-busca-pagination .ant-busca-pag {
  display: inline-block;
  min-width: 30px;
  margin-right: 6px;
  padding: 6px 16px;
  border: 1px solid #E6EBEE;
  border-radius: 5px;
  background: #ffffff;
  color: #003459;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.ant-busca-pagination .ant-busca-pag.active {
  background: #ECA400;
  color: #ffffff;
  font-weight: bold;
  cursor: default;
  box-shadow: 0 2px 8px #ffd36e33;
}

.ant-busca-pagination .ant-busca-pag:not(.active):hover {
  background: #119FEB;
  color: #ffffff;
}

/* Spinner dashicons */
.dashicons.spin {
  animation: ant-spin 1s linear infinite;
}

@keyframes ant-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
