/* Import Roboto from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Apply Roboto globally on this page */
body {
  font-family: "Roboto", serif;
  font-size: 13pt;
  color: black;
  letter-spacing: -0.25pt;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/* Headings */
h1 {
  font-weight: 700;
  font-size: 20pt;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
h2 {
  font-weight: 700;
  font-size: 16pt;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* Paragraphs */
p {
  font-weight: 400;
  margin-bottom: 1em;
}

/* Lists */
ul, ol {
  font-weight: 400;
  margin: 0 0 1em 1.5em;
  padding: 0;
  line-height: 1.4;
}
li {
  margin-bottom: 0.5em;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: underline;
}
a:hover {
  color: #004999;
  text-decoration: none;
}

/* Notes */
.small-note {
  font-weight: 300;
  font-size: 11pt;
  color: #555;
}

/* =========================
   PRINT-FRIENDLY STYLES
   ========================= */
@media print {
  body {
    color: black;
    background: white !important;
    font-size: 12pt; /* slightly smaller for paper */
    line-height: 1.5;
  }

  /* Remove colors and simplify links */
  a {
    color: black;
    text-decoration: underline;
  }

  /* Hide UI elements like switchers, navbars, buttons */
  .switcher,
  .navbar,
  .btn,
  .footer,
  .toast,
  .modal {
    display: none !important;
  }

  /* Ensure headings stand out in print */
  h1 {
    font-size: 18pt;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
  h2 {
    font-size: 14pt;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
}

/* Floating print button */
.print-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20pt;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 9999;
}

.print-float:hover {
  background: #004999;
}

/* Hide button when printing */
@media print {
  .print-float {
    display: none !important;
  }
}

