/**
 * @file style.css
 * @description Specific styles for the Yag2Dpg game view.
 * Ensures the q5play canvas behaves correctly within the Tailwind flex layout.
 * @author Miguel Páramos
 */

/* Force the canvas generated by q5play/p5play to remove extra margins and behaviors */
#game-container canvas {
    display: block;
    outline: none;
    touch-action: none; /* Prevents unwanted mobile gestures (like scrolling) over the game area */
}