/* ------------------------------------------------------------------------------------------------------------------ */
/* AI tooltip                                                                                                         */
/* ------------------------------------------------------------------------------------------------------------------ */
#aiOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 100;
}
.big-tooltip {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    max-width: 40rem;
    min-width: 20rem;
    color: #D9D9D9;
    background-color: #212121;
    border: 0.2rem solid var(--bs-accent);
    border-radius: 0.75rem;
    padding: 2rem;
    font-size: 1rem;
    word-wrap: break-word;
    z-index: 101;
}