/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* app/assets/stylesheets/application.css */

html, body {
    --hover-color: var(--color-subtle-dark);
    --hover-size: 0.15rem;
    --hover-filter: brightness(1);

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    background: var(--color-bg);
    color: var(--color-ink);
    font-family: var(--font-sans);
    line-height: 1.4;
    overflow: unset;
    scroll-behavior: auto;
    text-rendering: optimizeLegibility;
    text-size-adjust: none;
}

input[type=file],
input[type=file]::file-selector-button {
    cursor: pointer;
}
