/* Reset and document-level defaults. Consumes tokens from /css/tokens.css. */

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; }

body {
    font-family: var(--font-family), sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--surface-card);
    width: initial;
}

::placeholder {
    color: var(--text-placeholder) !important;
}

hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid var(--border);
}

small {
    font-size: 0.8rem;
    color: var(--text-faintest);
}

.ellipsis-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-line-height {
    line-height: normal !important;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.text-muted {
    color: var(--text-subtle);
}

@media print {
    vaadin-vertical-layout { display: block; }
}
