/* Small custom styles on top of Tailwind */
:root {
    --brand: #4f46e5;
}

/* Example: make images responsive by default */
img {
    max-width: 100%;
    height: auto;
}

/* Add focus outline for accessibility */
:focus {
    outline: 2px dashed var(--brand);
    outline-offset: 3px
}