/* color palette: https://www.shecodes.io/palettes/1623 */
/* This stylesheet was mostly auto generated */

/* Basic reset for body */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    background-color: #2a2438;
}

/* Container for centering content */
.container {
    background-color: #352f44;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border: 1px solid #5c5470;
}

canvas {
    display: block;
    background: black;
    /* Big border to make the screen look sunken */
    border: 10px solid transparent;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #5c5470;
    border-radius: 8px;
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Basic styling for the file input button, as default browser styles vary */
input[type="file"]::-webkit-file-upload-button {
    margin-right: 16px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 0;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #eff6ff;
    color: #352f44;
    cursor: pointer;
    transition: background-color 0.2s;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #dbd8e3;
}

/* Firefox specific styling */
input[type="file"]::file-selector-button {
    margin-right: 16px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 0;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #eff6ff;
    color: #352f44;
    cursor: pointer;
    transition: background-color 0.2s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #dbd8e3;
}
