/* Tooltip Trigger */
.tooltip-trigger {
    cursor: pointer;
    border-bottom: 2px dotted #0077b6;
    color: #0077b6;
    transition: opacity 0.2s ease;
}

.tooltip-trigger:hover {
    color: #024f7f;
    border-bottom: 2px dotted #024f7f;
}

/* Overlay-Hintergrund */
.tooltip-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.tooltip-overlay.active {
    display: block;
}

/* Tooltip Box */
.tooltip {
    display: none;
    position: fixed;
    background-color: #ffffff;
    color: #333;
    padding: 0px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1000;
    max-width: calc(100vw - 40px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
    pointer-events: none;
}

.tooltip.active {
    display: block;
}

.tooltip strong {
    font-weight: 600;
    color: #000;
}

.tooltip.text-center {
    text-align: center;
}