/* Weather Alert Tooltip Styles (from legacy nav-side.css, modernized) */
.my-tooltip {
    position: relative;
    background: #1a2740;
    color: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 12px;
    max-width: 480px;
    min-width: 420px;
    overflow: hidden;
    font-size: 1.50rem;
    
    /* Mobile touch optimizations */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobile close button for easy dismissal */
.my-tooltip::before {
    content: '\f00d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

/* Show close button on mobile devices */
@media (max-width: 768px), (hover: none) {
    .my-tooltip::before {
        opacity: 1;
        pointer-events: all;
    }
    
    .my-tooltip::before:hover,
    .my-tooltip::before:active {
        background: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        transform: scale(1.1);
    }
}

/* Touch-friendly dismiss area on mobile */
@media (max-width: 768px) {
    .my-tooltip {
        /* Add tap target around edges for dismissal */
        margin: 10px;
        position: relative;
    }
    
    .my-tooltip::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        pointer-events: none;
        z-index: -1;
    }
    
    /* Swipe indicator for mobile */
    .my-tooltip:not(.mobile-tooltip)::after {
        border: 2px dashed rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
}

@keyframes swipeHint {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.02); }
}

body.light-theme .my-tooltip {
    background: var(--light-panel);
    color: var(--text-dark);
}

/* --- Header --- */
.my-tooltip .section-header:first-of-type {
    background: #1a2740;
    padding: 12px 12px 8px 12px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: none;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

body.light-theme .my-tooltip .section-header:first-of-type {
    background: repeating-linear-gradient(135deg, var(--light-panel), var(--light-panel) 10px, var(--light-overlay) 10px, var(--light-overlay) 20px);
}

.my-tooltip .section-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.light-theme .my-tooltip .section-header h2 {
    color: var(--text-dark);
}

.my-tooltip .section-header h2::before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2196f3;
    font-size: 1em;
    margin-right: 4px;
}

body.light-theme .my-tooltip .section-header h2::before {
    color: var(--primary-color);
}

/* --- Severity Badge --- */
.my-tooltip .severity-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: 60px;
    text-align: center;
    border: none;
    z-index: 2;
    color: #fff;
    background: #ff9800;
    display: inline-block;
}
.my-tooltip[data-severity="Severe"] .severity-badge { background: #f44336; }
.my-tooltip[data-severity="Extreme"] .severity-badge { background: #d32f2f; }
.my-tooltip[data-severity="Moderate"] .severity-badge { background: #ff9800; color: #fff; }
.my-tooltip[data-severity="Minor"] .severity-badge { background: #ffc107; color: #222; }
.my-tooltip[data-severity="Unknown"] .severity-badge { background: #607d8b; }

/* --- Main Content --- */
.my-tooltip .main-content {
    padding: 10px 12px 8px 12px;
}

/* --- Detail Rows --- */
.my-tooltip p {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #22325a;
    border-radius: 999px;
    padding: 0px;
    font-size: 0.8rem;
    color: #fff;
    border: none;
    padding: 3px 8px 3px 8px;
}

body.light-theme .my-tooltip p {
    background: var(--light-overlay);
    color: var(--text-dark);
}

.my-tooltip p b {
    font-weight: 600;
    color: #2196f3;
    min-width: 80px;
}

body.light-theme .my-tooltip p b {
    color: var(--primary-color);
}

/* --- Description Box: Tidy and Spacious --- */
.my-tooltip .description-text {
    background: #22325a;
    border-radius: 8px;
    padding: 8px;
    margin: 0px;
    color: #fff;
    font-size: 0.8rem;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 1px 6px rgba(33,150,243,0.08);
    line-height: 1.3;
    /* Add bottom padding to account for sticky button group on all screen sizes */
    padding-bottom: 60px;
}
body.light-theme .my-tooltip .description-text {
    background: #e3f2fd;
    color: #222;
}

/* Light theme support for sticky button group border on all screen sizes */
body.light-theme .my-tooltip .button-group,
body.light-theme .my-tooltip > div[style*="text-align: right"] {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
body.light-theme .my-tooltip .description-text p {
    background: #e3f2fd;
    color: #222;
}

.my-tooltip .description-text h3,
.my-tooltip .description-text strong {
    color: #2196f3;
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 600;
}

body.light-theme .my-tooltip .description-text h3,
body.light-theme .my-tooltip .description-text strong {
    color: var(--primary-color);
}

/* --- Button Group --- */
.my-tooltip .button-group, .my-tooltip > div[style*="text-align: right"] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
    padding-bottom: 6px;
    /* Enhanced sticky positioning for all browsers and mobile devices */
    position: -webkit-sticky; /* Safari support */
    position: sticky;
    bottom: 0;
    background: inherit;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
    margin-bottom: 0;
    
    /* Ensure proper background coverage */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    
    /* Fallback for browsers without sticky support */
    @supports not (position: sticky) {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--dark-panel);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px;
        margin: 0;
        z-index: 1000;
    }
}

.my-tooltip button, .my-tooltip .btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.75rem;
    box-shadow: none;
    transition: background 0.18s, transform 0.18s;
    cursor: pointer;
    outline: none;
}

body.light-theme .my-tooltip button, 
body.light-theme .my-tooltip .btn {
    background: var(--primary-color);
    color: #fff;
}
.my-tooltip button:hover, .my-tooltip .btn:hover {
    background: #1976d2;
    transform: translateY(-1px) scale(1.02);
}

body.light-theme .my-tooltip button:hover, 
body.light-theme .my-tooltip .btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px) scale(1.02);
}
.my-tooltip button:active, .my-tooltip .btn:active {
    background: #1565c0;
    transform: scale(0.98);
}

body.light-theme .my-tooltip button:active, 
body.light-theme .my-tooltip .btn:active {
    background: var(--primary-active);
    transform: scale(0.98);
}

/* --- Translate Button --- */
.my-tooltip .translate {
    background: #1976d2;
    color: #fff;
    border: none;
    font-weight: 500;
    margin-right: 4px;
    position: relative;
    transition: all 0.2s ease;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.light-theme .my-tooltip .translate {
    background: var(--primary-hover);
    color: #fff;
}

.my-tooltip .translate::before {
    content: "\f0ac";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 4px;
    font-size: 1em;
    transition: transform 0.2s ease;
}

/* Translate button hover state */
.my-tooltip .translate:hover {
    background: #1565c0;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

body.light-theme .my-tooltip .translate:hover {
    background: var(--primary-active);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

/* Translate button active state */
.my-tooltip .translate:active {
    background: #0d47a1;
    transform: scale(0.98);
}

body.light-theme .my-tooltip .translate:active {
    background: var(--primary-active);
    transform: scale(0.98);
}

/* Translate button disabled state (loading) */
.my-tooltip .translate:disabled,
.my-tooltip .translate.loading {
    background: #9e9e9e;
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.my-tooltip .translate:disabled::before,
.my-tooltip .translate.loading::before {
    content: "\f110";
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Translation error message styling */
.my-tooltip .translation-error {
    background: #ffebee;
    color: #c62828;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 4px;
    border-left: 4px solid #c62828;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.light-theme .my-tooltip .translation-error {
    background: #fff3e0;
    color: #e65100;
    border-left-color: #e65100;
}

/* Translate button when content is translated */
.my-tooltip .translate.translated {
    background: #4caf50;
}

.my-tooltip .translate.translated::before {
    content: "\f00c";
}

body.light-theme .my-tooltip .translate.translated {
    background: #4caf50;
}

/* Translate button when showing original */
.my-tooltip .translate.showing-original {
    background: #ff9800;
}

.my-tooltip .translate.showing-original::before {
    content: "\f0a9";
}

body.light-theme .my-tooltip .translate.showing-original {
    background: #ff9800;
}

/* --- Close Button --- */
.my-tooltip .tooltip-close-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    font-weight: 500;
    margin-left: 4px;
    position: relative;
}

body.light-theme .my-tooltip .tooltip-close-btn {
    background: #dc3545;
    color: #fff;
}

.my-tooltip .tooltip-close-btn:hover {
    background: #c82333;
    transform: translateY(-1px) scale(1.02);
}

body.light-theme .my-tooltip .tooltip-close-btn:hover {
    background: #c82333;
    transform: translateY(-1px) scale(1.02);
}

.my-tooltip .tooltip-close-btn:active {
    background: #bd2130;
    transform: scale(0.98);
}

body.light-theme .my-tooltip .tooltip-close-btn:active {
    background: #bd2130;
    transform: scale(0.98);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .my-tooltip {
        max-width: min(90vw, 320px);
        min-width: 200px;
        padding: 10px;
        font-size: 0.8rem;
        
        /* Mobile touch optimizations */
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        
        /* Prevent tooltip from blocking map interaction */
        pointer-events: auto;
    }
    
    /* Make content areas touch-friendly */
    .my-tooltip * {
        touch-action: manipulation;
    }
    
    /* Scrollable description on mobile */
    .my-tooltip .description-text {
        max-height: min(30vh, 150px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        /* Add bottom padding for sticky button group */
        padding-bottom: 70px;
    }

    .my-tooltip .section-header:first-of-type {
        padding: 10px 10px 6px 35px; /* Account for close button */
    }

    .my-tooltip .section-header h2 {
        font-size: 0.9rem;
        gap: 4px;
    }

    .my-tooltip .severity-badge {
        top: 8px;
        right: 10px;
        padding: 3px 8px;
        font-size: 0.7rem;
        min-width: 50px;
    }

    .my-tooltip .main-content {
        padding: 8px 10px 6px 10px;
    }

    .my-tooltip p {
        font-size: 0.75rem;
        margin-bottom: 4px;
        padding: 2px 6px;
    }

    .my-tooltip p b {
        min-width: 60px;
    }

    .my-tooltip .description-text h3,
    .my-tooltip .description-text strong {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .my-tooltip .button-group, .my-tooltip > div[style*="text-align: right"] {
        gap: 4px;
        margin-top: 6px;
        padding-bottom: 3px;
        padding-top: 4px;
        
        /* Make buttons more compact */
        flex-wrap: wrap;
        justify-content: center;
        
        /* Enhanced sticky behavior for mobile */
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        background: inherit;
        z-index: 15;
        
        /* Ensure proper background coverage on mobile */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Fallback for browsers without sticky support */
        @supports not (position: sticky) {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-panel);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px;
            margin: 0;
            z-index: 1000;
        }
    }

    .my-tooltip button, .my-tooltip .btn {
        padding: 4px 8px; /* Much smaller padding */
        font-size: 0.6rem;
        gap: 2px;
        min-height: 28px; /* Smaller touch target */
        min-width: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.3);
        border-radius: 4px; /* Smaller border radius */
    }
}

@media (max-width: 480px) {
    .my-tooltip {
        max-width: min(95vw, 280px);
        min-width: 180px;
        padding: 8px;
        font-size: 0.75rem;
        
        /* Even more aggressive mobile optimization */
        margin: 5px;
    }
    
    /* Smaller close button for very small screens */
    .my-tooltip::before {
        width: 20px;
        height: 20px;
        font-size: 8px;
        top: 6px;
        left: 6px;
    }

    .my-tooltip .section-header:first-of-type {
        padding: 8px 8px 5px 30px; /* Account for smaller close button */
    }

    .my-tooltip .section-header h2 {
        font-size: 0.85rem;
        gap: 3px;
    }

    .my-tooltip .severity-badge {
        top: 6px;
        right: 8px;
        padding: 2px 6px;
        font-size: 0.65rem;
        min-width: 45px;
    }

    .my-tooltip .main-content {
        padding: 6px 8px 5px 8px;
    }

    .my-tooltip p {
        font-size: 0.7rem;
        margin-bottom: 3px;
        padding: 2px 5px;
    }

    .my-tooltip p b {
        min-width: 50px;
    }

    .my-tooltip .description-text {
        padding: 5px;
        font-size: 0.7rem;
        max-height: min(25vh, 120px);
        /* Add bottom padding for sticky button group */
        padding-bottom: 65px;
    }

    .my-tooltip .description-text h3,
    .my-tooltip .description-text strong {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .my-tooltip .button-group, .my-tooltip > div[style*="text-align: right"] {
        gap: 2px;
        margin-top: 3px;
        padding-bottom: 1px;
        padding-top: 2px;
        
        /* Enhanced sticky behavior for small mobile */
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        background: inherit;
        z-index: 15;
        
        /* Ensure proper background coverage on small mobile */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Fallback for browsers without sticky support */
        @supports not (position: sticky) {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-panel);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px;
            margin: 0;
            z-index: 1000;
        }
    }

    .my-tooltip button, .my-tooltip .btn {
        padding: 2px 4px;
        font-size: 0.5rem;
        gap: 1px;
        min-height: 20px;
        min-width: 40px;
        border-radius: 2px;
    }
}

/* Portrait orientation optimizations for mobile */
@media (max-width: 768px) and (orientation: portrait) {
    .my-tooltip {
        /* Reduce padding to save space */
        padding: 8px;
        /* Ensure it fits within the constrained viewport */
        max-height: calc(100vh - 320px);
        overflow-y: auto;
    }
    
    .my-tooltip .description-text {
        /* Further reduce description height for portrait mode */
        max-height: min(25vh, 120px);
        padding: 4px;
        /* Add bottom padding for sticky button group */
        padding-bottom: 60px;
    }
    
    .my-tooltip .button-group {
        /* Make buttons much more compact */
        gap: 2px;
        margin-top: 4px;
        padding-bottom: 1px;
        padding-top: 2px;
        
        /* Enhanced sticky behavior for portrait mobile */
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        background: inherit;
        z-index: 15;
        
        /* Ensure proper background coverage on portrait mobile */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Fallback for browsers without sticky support */
        @supports not (position: sticky) {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-panel);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px;
            margin: 0;
            z-index: 1000;
        }
    }
    
    .my-tooltip button, .my-tooltip .btn {
        /* Much smaller buttons to save space */
        padding: 2px 5px;
        font-size: 0.5rem;
        min-height: 20px;
        min-width: 45px;
        border-radius: 2px;
    }
    
    .my-tooltip .section-header:first-of-type {
        padding: 8px 8px 4px 30px;
    }
    
    .my-tooltip .main-content {
        padding: 6px 8px 4px 8px;
    }
    
    .my-tooltip p {
        margin-bottom: 3px;
        padding: 2px 4px;
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .my-tooltip {
        max-width: min(98vw, 250px);
        min-width: 160px;
        padding: 6px;
        font-size: 0.7rem;
        margin: 3px;
    }
    
    .my-tooltip::before {
        width: 18px;
        height: 18px;
        font-size: 7px;
        top: 4px;
        left: 4px;
    }

    .my-tooltip .section-header:first-of-type {
        padding: 6px 6px 4px 26px;
    }

    .my-tooltip .section-header h2 {
        font-size: 0.8rem;
        gap: 2px;
    }

    .my-tooltip .severity-badge {
        top: 5px;
        right: 6px;
        padding: 2px 5px;
        font-size: 0.6rem;
        min-width: 40px;
    }

    .my-tooltip .main-content {
        padding: 5px 6px 4px 6px;
    }

    .my-tooltip p {
        font-size: 0.65rem;
        margin-bottom: 2px;
        padding: 1px 4px;
    }

    .my-tooltip p b {
        min-width: 45px;
    }

    .my-tooltip .description-text {
        padding: 4px;
        font-size: 0.65rem;
        max-height: min(30vh, 140px);
    }

    .my-tooltip .description-text h3,
    .my-tooltip .description-text strong {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .my-tooltip .button-group, .my-tooltip > div[style*="text-align: right"] {
        gap: 2px;
        margin-top: 3px;
        padding-bottom: 1px;
        padding-top: 2px;
        
        /* Enhanced sticky behavior for very small mobile */
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        background: inherit;
        z-index: 15;
        
        /* Ensure proper background coverage on very small mobile */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Fallback for browsers without sticky support */
        @supports not (position: sticky) {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-panel);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4px;
            margin: 0;
            z-index: 1000;
        }
    }

    .my-tooltip button, .my-tooltip .btn {
        padding: 2px 4px;
        font-size: 0.5rem;
        gap: 1px;
        min-height: 18px;
        min-width: 35px;
        border-radius: 2px;
    }
}

.my-tooltip.mobile-tooltip {
    background: var(--dark-panel);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    padding: 10px;
    font-size: 0.8rem;
}

body.light-theme .my-tooltip.mobile-tooltip {
    background: var(--light-panel);
    color: var(--text-dark);
}

.my-tooltip.mobile-tooltip .severity-badge {
    padding: 3px 8px;
    font-size: 0.7rem;
    top: 8px;
    right: 10px;
    min-width: 50px;
}

.my-tooltip.mobile-tooltip h2 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

body.light-theme .my-tooltip.mobile-tooltip h2 {
    color: var(--text-dark);
}

.my-tooltip.mobile-tooltip h3 {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

body.light-theme .my-tooltip.mobile-tooltip h3 {
    color: var(--text-dark);
}

.my-tooltip.mobile-tooltip p {
    font-size: 0.75rem;
    margin-bottom: 4px;
}

body.light-theme .my-tooltip.mobile-tooltip p {
    color: var(--text-dark);
}

.my-tooltip.mobile-tooltip .description-text {
    font-size: 0.75rem;
    padding: 6px;
    max-height: 180px;
}

body.light-theme .my-tooltip.mobile-tooltip .description-text {
    background: var(--light-overlay);
    color: var(--text-dark);
}

@media (max-width: 360px) {
    .my-tooltip.mobile-tooltip {
        font-size: 0.75rem;
        padding: 8px;
    }
    
    .my-tooltip.mobile-tooltip p b {
        min-width: 50px;
    }
    
    body.light-theme .my-tooltip.mobile-tooltip p b {
        color: var(--primary-color);
    }
    
    .my-tooltip.mobile-tooltip .btn {
        font-size: 0.6rem;
        padding: 2px 5px;
        min-height: 20px;
        min-width: 40px;
        border-radius: 3px;
    }
}



.my-tooltip .description-entry,
.my-tooltip .description-entry p {
    margin: 0;
    padding: 0;
    background-color: none;
    color: inherit;
    font-size: inherit;
    border: none;
    box-shadow: none;
}

.my-tooltip .description-entry {
    color: #fff;
    border-radius: 4px;
    margin-bottom: 4px;
    padding: 4px 6px;
    font-size: 0.8rem;
    box-shadow: none;
}

body.light-theme .my-tooltip .description-entry {
    color: var(--text-dark);
}
.my-tooltip .description-entry:last-child {
    margin-bottom: 0;
} 