.tooltip-container {
    position: relative;
    /* This sets the positioning context for the absolute children */
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 30px;
    margin-left: 1%;
    color: var(--orange);

    &.no-data { color: #aaa; }
}

.tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: var(--orange);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 999000;
    font-size: 18px;
    /* Ensure z-index is high enough */
    bottom: 120%;
    /* Increase this value to move the tooltip further up */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    /* Increase this value for a larger gap */
    /* Ensure the tooltip is above all other content */
}
.tooltip-text.no-data, .tooltip-text.locked {
    background-color: #aaa;
}

.tooltip-text.locked {
    width: fit-content;
    white-space: nowrap;
    padding: 10px;
}

.tooltip-label {
    position: relative;
    cursor: pointer;
}
.tooltip-container:hover .tooltip-text, .tooltip-label:hover .tooltip-text, .tooltip-holder:hover .tooltip-text {
    visibility: visible;    
}

.large-tooltip-container {
    position: relative;
    /* This sets the positioning context for the absolute children */
    display: inline-flex;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 0.6%;
    cursor: pointer;
    font-size: 42px;
    color: var(--orange);
}

.large-tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: var(--orange);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    font-size: x-large;
    /* Ensure z-index is high enough */
    bottom: 120%;
    /* Adjust if needed */
    left: 50%;
    transform: translateX(-50%);
    /* Ensure the tooltip is above all other content */
}

.large-tooltip-container:hover .large-tooltip-text {
    visibility: visible;
}

.medium-tooltip-container {
    position: relative;
    /* This sets the positioning context for the absolute children */
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--orange);
    margin-top: 0.5%;
    margin-left: 1%;
    transform: translateY(-50%);
    z-index: 10000000000000000 !important;
}

.medium-tooltip-text {
    display: block;
    visibility: hidden;
    width: 300px;
    background-color: var(--orange);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    font-size: x-large;
    /* Ensure z-index is high enough */
    bottom: -260%;
    /* Adjust if needed */
    left: 50%;
    transform: translateX(-120%);
    z-index: inherit;
    /* Ensure the tooltip is above all other content */
}

.medium-tooltip-container:hover .medium-tooltip-text {
    visibility: visible;
}

.toggle-tooltip-container {
    position: relative;
    /* This sets the positioning context for the absolute children */
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--orange);
    z-index: 100;
}

.toggle-tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: var(--orange);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 999000;
    font-size: 18px;
    /* Ensure z-index is high enough */
    bottom: 120%;
    /* Increase this value to move the tooltip further up */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
}

.toggle-tooltip-container:hover .toggle-tooltip-text {
    visibility: visible;
}

.circle-letter:hover > .tooltip-text {
    visibility: visible;
    box-shadow: 0 0 10px 4px rgba(0,0,0,0.5);
}