/* reset.css - Clean base for Amiga styling */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: monospace; /* Will be overridden by theme */
    image-rendering: pixelated; /* Helps retro feel */
}

textarea {
    resize: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 8px;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.2;
    background: inherit;
    color: inherit;
}

/* Remove default focus rings - we'll style our own Amiga way */
button:focus,
input:focus,
textarea:focus {
    outline: none;
}
