/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 380px;
  background-color: #ddd4c7;
  color: #000000;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.showlist li {
    background-color: #ddd4c7;      /* meleg bézses háttér */
    border: 1px solid #ffffff;      /* fehér keret */
    border-radius: 6px;             /* lekerekített sarkok */
    padding: 8px 12px;              /* belso margó */
    margin-bottom: 10px;            /* sorok közti távolság */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* finom árnyék */
    font-size: 14px;
    line-height: 1.5;
}
.dogtitles {
    font-size: 0.6em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 3px;
    color: #444;
}
.showlist {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}
.showlist li {
  margin-bottom: 4px;
  line-height: 1.4;
}
.labelcol {
  background-color: #e5f0ff; /* vagy amit eredetileg használtál */
}
.datacol {
  background-color: #f8fbff;
