html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Gilgalbyte Logo Styling */
.gilgalbyte-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0A3752 0%, #1e88e5 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(10, 55, 82, 0.3);
}

.gilgalbyte-logo:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.gilgalbyte-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.gilgalbyte-logo:hover svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-brand {
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0A3752 !important;
  letter-spacing: -0.5px;
  padding: 0.5rem 1rem 0.5rem 0;
}

.navbar-brand:hover {
  color: #1e88e5 !important;
}

.navbar-brand-text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  color: #0A3752;
  transition: color 0.3s ease;
  display: inline-block;
}

.navbar-brand:hover .navbar-brand-text {
  color: #1e88e5;
  text-shadow: 0 2px 4px rgba(30, 136, 229, 0.1);
}

/* Ensure logo maintains alignment in navbar */
.navbar .navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.searchbox {
    background-color: whitesmoke;
    width: 60%;
    border: 2px;
    border: 1px solid #ffffff;
    border-color: black;
    border-width: 1px;
    color: black;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0px;
    line-height: normal;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    border-style: solid;
    font-family: verdana,geneva,sans-serif;
}