﻿.custom-tooltip {
    position: relative;
    display: inline-block;
    height: 40px;
}

.custom-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    background-color: #333;
    color: white;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin-top: 5px;
    z-index: 10;
}

.custom-tooltip:hover::before {
    opacity: 1;
}
