/* Стили для иконки информации */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; /* Размер иконки */
  height: 24px; /* Размер иконки */
  background-color: #27ae60; /* Цвет фона (можно поменять) */
  color: white; /* Цвет буквы "i" */
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%; /* Делаем круг */
  cursor: pointer; /* Чтобы было понятно, что можно взаимодействовать */
  transition: background-color 0.3s ease;
}

/* При наведении немного затемняем */
.info-icon:hover {


  /* Стили для заголовка с иконкой */
  .tooltip {
    display: flex;
    align-items: center;
    gap: 8px; /* Отступ между текстом и иконкой */
  }

  /* Иконка часов */
  .clock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* Размер круга */
    height: 24px; /* Размер круга */
    background-color: #007bff; /* Синий фон */
    color: white; /* Белая иконка */
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%; /* Делаем круг */
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
  }

  /* При наведении затемняем */
  .clock-icon:hover {
    background-color: #0056b3;
  }

  /* Всплывающий текст */
  .tooltip-text {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    bottom: 28px; /* Отступ от иконки */
    left: 50%;
    transform: translateX(-50%);
  }

  /* Показываем всплывающее окно при наведении */
  .clock-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
