/* Custom styles for Vectorizer App */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.workspace-card {
    min-height: 70vh;
    border: 2px dashed #ccc;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.workspace-card.dragover {
    border-color: #0d6efd;
    background-color: #e9f2ff;
    transform: scale(1.01);
}

#canvas-wrapper {
    min-height: 500px;
}

#canvas-container {
    /* Enables scrolling if canvas is larger than container */
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-canvas {
    /* transition for smooth zooming */
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}
