/* Shirtlabor custom client-side overrides. */

body {
    background: url('../img/bg-sl-logo-pattern.png');
}

/* Hide "Powered by osTicket" badge in the client footer.
   Higher specificity needed to beat theme.css `#footer #poweredBy`. */
#footer #poweredBy {
    display: none;
}

/* Shrink default H1 a touch — 20px feels too large for headings like
   "Neues Ticket eröffnen". Loads after theme.css so it wins at equal
   specificity. */
h1 {
    font-size: 24px;
}

/* `thread.css` sets `.thread-body h1` to 30px with higher specificity
   than the bare `h1`. Match the selector to win. */
.thread-body h1,
.thread-body .h1 {
    font-size: 24px;
}
