/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    color: #0044cc;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

#generate-button {
    display: none;
}

textarea, select, input[type="text"], input[type="file"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #0044cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: #003399;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
}

.dragover {
    border: 2px dashed #0044cc;
}

#csv-input {
    display: block;
    margin-bottom: 15px;
}

#download-link {
    display: none;
}

canvas {
    display: none;
}

@media print {
    body * {
        visibility: hidden;
    }
    #canvas {
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        width: 60mm;
        height: 25mm;
    }
    @page {
        size: 60mm 25mm;
        margin: 0;
    }
}

