/*
Содержание:
1. Стили страницы пользователя
2. Нестандартные кнопки для страницы пользователя
*/

.form-usdaedit {
  width: 100%;
  margin-bottom: 10px;
}

.tooltip-usda-q {
  position: absolute;
  bottom: 150%; /* Расположено выше иконки */
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.div-choose-comp-role {
  height: 60px;
}

/* Треугольник-указатель */
.tooltip-usda-q::after {
  content: "";
  position: absolute;
  top: 100%; /* Указывает вниз, к иконке */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
}

/* Всплывающее окно при наведении */
.icon-usda-q-cont {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.icon-usda-q-cont:hover .tooltip-usda-q {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
