
/* YRServer minimal overrides – built for MyBB 1.8.39 (1839)
   Tip: keep "MyBB Master Style" as parent theme for maximum compatibility. */

:root{
  /* Set these to your brand colors */
  --yr-accent: #0072BC;
  --yr-accent-hover: #0096FF;
}

/* === Fix: logo too large in header === */
#logo a img{
  max-height: 56px;   /* adjust to taste */
  width: auto;
  height: auto;
  display: block;
}

/* Optional: slightly more compact header */
#logo{
  padding: 8px 0;
}

/* Optional: bring the forum accent closer to the logo */
a:link, a:visited{
  color: var(--yr-accent);
}
a:hover, a:active{
  color: var(--yr-accent-hover);
}
input.button, .button, button{
  background-image: none !important;
  background-color: var(--yr-accent) !important;
  color: #fff !important;
}
input.button:hover, .button:hover, button:hover{
  background-color: var(--yr-accent-hover) !important;
}

		