/* === Space Mono Font Styles === */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

.space-mono-regular {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.space-mono-bold {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.space-mono-regular-italic {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.space-mono-bold-italic {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: italic;
}

/* === Page Styling === */
body {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    background: #fbf5e7;
    text-align: left;
    padding: 20px;
}

/* === Header === */
h1 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-left: 10px;
}

/* === File Upload Button (Custom) === */
input[type="file"] {
    display: none; /* Hide default input */
}

.custom-file-upload {
    font-family: "Space Mono", monospace;
    font-size: 14px;
    padding: 10px 15px;
    background: #222;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 150px;
    margin: 10px 0 0 10px; /* Align left */
}

/* Hover effect */
.custom-file-upload:hover {
    background: #444;
}

/* === General Button Styling === */
.button-style {
    font-family: "Space Mono", monospace;
    font-size: 14px;
    padding: 10px 15px;
    background: #222;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 180px;
    text-align: center;
    margin: 10px 0 0 10px; /* Align left */
    border: none;
}

/* Hover effect for buttons */
.button-style:hover {
    background: #444;
}

/* === Canvas Styling === */
canvas {
    width: 100% !important;
    max-width: 1000px !important;
    height: auto !important;
    display: block;
    margin: 20px auto;
}
