@font-face {
  font-family: "Awesome 9";
  src: url("fonts/Awesome 9.eot");
  src: url("fonts/Awesome 9.eot?#iefix") format("embedded-opentype"),
       url("fonts/Awesome 9.woff2") format("woff2"),
       url("fonts/Awesome 9.woff") format("woff"),
       url("fonts/Awesome 9.ttf") format("truetype");
}

body {
  background-color: #4A6DDE;
  color: white;
  font-family: "Awesome 9", sans-serif;
  min-height: 100vh;
  
  /* Remove default body margin or set box-sizing to prevent overflow */
  margin: 0;
  padding: 8px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
}

.mastodon-verification {
  display: none;
}

p {
  color: #FFFFFF;
}

h1 {
  font-weight: normal;
  color: #FFFFFF;
  border-radius: 5px;
  background: #3156CC;
  width: fit-content;
  max-width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 3px #2846A6;
}

h2 {
  color: #FFFFFF;
}

h3 {
  color: #FFFFFF;
}

footer {
  margin-top: auto;
  text-align: center;
}

a {
  color: #00a2e8;
}

/* Vertical separators between navigation buttons */
.divider {
  width: 2px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #3156CC;
  box-shadow: 0 3px #2846A6;
}

/* Wide horizontal line below the navigation bar */
.nav-line {
  width: 700px;           /* Set a fixed max width to match your top banner image */
  max-width: 90%;         /* Helps with smaller screen sizing */
  height: 4px;            /* Fixed pixel height so zoom won't distort it */
  margin: 10px auto;      /* Keeps it centered */
  border-radius: 10px;
  background: #3156CC;
  box-shadow: 0 3px #2846A6;
}

/* Add this to style.css */
.horizontal-divider {
  width: 600px;        /* Lock to MAX pixel width (or max-width) instead of % */
  max-width: 90%;      /* Fallback for smaller mobile screens */
  height: 4px;         /* Fixed pixel height */
  margin: 15px auto;   /* Center it and keep spacing fixed */
  border-radius: 10px;
  background: #3156CC;
  box-shadow: 0 3px #2846A6;
}

.container {
  opacity: 1;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.container a {
  padding: 0 12px;
  display: inline-block;
}

button {
  font-family: "Awesome 9";
  color: #FFFFFF;
  font-size: 20px;
  background: none;
  opacity: 1;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  border: none;
  vertical-align: middle;
}

button:hover {
  color: #00a2e8;
}

.Reserved {
  opacity: 0.4;
}

.FooterDivider {
  border-radius: 50px;
  background: #4A6DDE;
  box-shadow: 0 3px #2846A6;
}

.welcome-title {
  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 4px 24px;
  
  margin-top: 20px;

  color: #FFFFFF;
  background: #3156CC;
  border-radius: 5px;
  box-shadow: 0 3px #2846A6;

  font-size: 2em;
  white-space: nowrap;
}

.welcome-title img {
  width: 60px;
  height: 60px;
  display: block;
  flex-shrink: 0;
}

.loading-bar {
  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 5px;

  padding: 0 100px;
  
  margin-top: 20px;

  color: #FFFFFF;
  background: #3156CC;
  border-radius: 5px;
  box-shadow: 0 3px #2846A6;

  font-size: 2em;
  white-space: nowrap;
}

/* Enable smooth scrolling across the page */
html {
  scroll-behavior: smooth;
}

/* Custom Pixel-Smooth Scrollbar */

/* 1. Scrollbar Width & Overall Layout */
::-webkit-scrollbar {
  width: 10px;
}

/* 2. Track Background */
::-webkit-scrollbar-track {
  background: #3156CC;
  border-radius: 10px;
  margin: 4px 0; /* Gives top and bottom padding so it doesn't touch window edges */
}

/* 3. Draggable Thumb */
::-webkit-scrollbar-thumb {
  background: #2846A6;
  border-radius: 10px;
  border: 2px solid #3156CC; /* Smooth padding gap inside track */
  transition: background 0.2s ease-in-out;
}

/* 4. Hover State */
::-webkit-scrollbar-thumb:hover {
  background: #00A2E8; /* Smooth shift to blue accent on hover */
}