﻿.tooltip-content-dark {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    /*font-weight:600;*/
    padding: 4px 8px 8px 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    z-index: 1050; /* Adjust this value according to your needs */
    cursor: pointer;
}
.tooltip-content-light {
    background-color: white;
    border: 1px solid #f8f9fa;
    border-radius: 10px;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
    color: black;
    font-size: 13px;
    /*font-weight:600;*/
    padding: 12px 18px 16px 18px;
    opacity: 0;
    display: none;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    z-index: 1050; /* Adjust this value according to your needs */
    cursor: pointer;
}
