/* ----- TOOLTIPS ----- */
.custom-tooltip {
    position: absolute;
    background-color: #009edf;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 1060; /* ABOVE .modal (1050) */
    opacity: 0.95;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.global-tooltip{
    position: absolute;
    display: none;
    padding: 5px 10px;
    background: rgba(0,0,0,0.8);
    /*background: #002e5d;*/

    color: white;
    border-radius: 4px;
    z-index: 9999;
    pointer-events: none;
    font-size: 0.875rem;
    /*max-width: 200px;*/
}

/* ----- PAGE ----- */
.page-tooltip { cursor: help;}
.page-tooltip:focus { outline: 2px solid currentColor; }
.page-tooltip-info { font-style: normal; padding: 0 .15em; }

.page-tooltip-text { cursor: help; border-bottom: 1px dotted currentColor; }
.page-tooltip-text:focus { outline: 2px solid currentColor; }
.page-tooltip-text-info { font-style: normal; padding: 0 .15em; }