.tooltip {
  position: absolute;
  padding: 10px;
  color: #ffffff;
  background-color: #333333;
  border-radius: 4px;
  display: none;
  z-index: 1000;
}

.tooltip-target {
  cursor: pointer;
  display: inline-block;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  background-color: #005c96;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  transition: background-color 0.3s ease;
}

.tooltip-target:hover {
  background-color: #004d7f;
}

.tooltip-target i {
  font-size: 12px; /* Размер иконки */
}


