.GameMaze {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f8ff;
    font-family: Arial, sans-serif;
    -webkit-user-select: none; /* Disable text selection on iOS */
    user-select: none; /* Disable text selection */
    -webkit-touch-callout: none; /* Disable callouts on iOS */
}
canvas {
    border: 3px solid #000;
    background-color: white;
    -webkit-user-select: none; /* Disable text selection on iOS */
    user-select: none; /* Disable text selection */
    -webkit-touch-callout: none; /* Disable callouts on iOS */
    touch-action: none; /* Prevent default touch actions like scrolling */
}
button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #1e90ff;
    color: white;
    border: none;
    border-radius: 5px;
    -webkit-user-select: none; /* Disable text selection on iOS */
    user-select: none; /* Disable text selection */
    -webkit-touch-callout: none; /* Disable callouts on iOS */
}
button:hover {
    background-color: #4682b4;
}