/* Inter font for a clean look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body { 
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
html {
    height: 100%;
    overflow: hidden;
}
/* Canvas styling to ensure it fits the container */
#cuttingCanvas { 
    border: 2px solid #e5e7eb; 
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    display: block;
}