/* Bioluminescent Fog Component Styles */
.fog-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Allow clicks to pass through to site content */
}

.fog-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: auto;
    pointer-events: auto; /* Enable interactions with the fog itself */
}
