/* ADDED: Font definition for the custom local font */
@font-face {
    font-family: 'AkiraExpanded';
    src: url('./assets/Akira_Expanded.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f9;
}

h1 {
    color: #333;
}

/* ... (rest of the CSS remains the same) ... */

.controls {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

#watermarkTextInput {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    /* Give it a decent width */
    font-size: 16px;
}

.button,
button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    text-decoration: none;
    /* For the label acting as a button */
}

.button:hover,
button:not([disabled]):hover {
    background-color: #0056b3;
}

button[disabled] {
    background-color: #cccccc;
    cursor: not-allowed;
}

.canvas-container {
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    max-width: 90%;
}

/* Custom Font class is now linked to 'AkiraExpanded' */
.canvas-text-font {
    font-family: 'AkiraExpanded', sans-serif;
}