
/* THIS CONTROLS THE TOOLTIP WHEN EDGE HOVER */
/* Keeping the .scene-tooltip class in case other elements use it for wrapping/max-width */
.scene-tooltip {
    /* Existing properties to control text flow and wrapping */
    max-width: 200px;
    white-space: pre-wrap;
    
    /* === NEW PROPERTIES FOR BLACK, OPAQUE BACKGROUND === */
    
    /* 1. Set a background color (e.g., black) */
    background-color: #000000; 
    
    /* 2. Set text color (e.g., white) for contrast */
    color: #FFFFFF;
    
    /* 3. Set the opacity */
    opacity: 0.95; /* Set to 1.0 for fully opaque, or 0.95 for a slight fade */
    
    /* Optional: Add padding and border-radius for better aesthetics */
    padding: 8px 12px;
    border-radius: 4px;

    /* === FONT CONTROL ADDITION === */
    
    /* Set the desired font size (e.g., 16px, 2em, or 120%) */
    font-size: 24px !important; 
    
    /* Optional: You can also set the font family and weight */
    font-family: 'Inter', sans-serif;
    font-weight: 500; 

}
