.fleet-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 38px;
}

.page-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c3c7ce;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-dot:hover {
  background: #7c828c;
}

.page-dot[aria-current="true"] {
  width: 28px;
  border-radius: 99px;
  background: var(--blue);
}
