/* ===== RESET & BASE ===== */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  border: 2px solid #000090;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== LAYOUT ===== */
#container {
  max-width: 1100px;
  margin: auto;
}

#main {
  float: left;
  width: 65%;
  background: #fff;
}

#rt-col {
  float: right;
  width: 30%;
  margin: 1px;
  background: #000090;
  padding: 5px;
 }

/* ===== HEADINGS ===== */
h1 {
  font-size: 18px;
  text-align: center;
  border-bottom: 4px solid #fc6;
  margin: 5px 0;
  color: #fc6;
  background: #000090;
}

h2 {
  font-size: 16px;
  font-weight: bold;
  color: #fc6;
  background: #000090;
  padding-left: 5px;
}

h3 {
  font-size: 17px;
  color: #fc6;
  margin: 5px 0;
}

h4 {
  font-size: 16px;
  color: #ff9494;
  margin: 5px 0;
}

/* ===== TEXT ===== */
p, ul, ol, li {
  color: #900000;
}

p {
  margin-bottom: 7px;
}

ul, ol {
  margin: 12px 0 14px 14px;
}

/* ===== LINKS ===== */
a {
  color: #00f;
  text-decoration: underline;
}

a:hover {
  background: red;
}

.small {
  font-size: 12px;
  font-weight: bold;
  color: #0d0;
  text-decoration: none;
}

/* ===== CONTENT ===== */
.content {
  margin: 10px 15px;
}

.bbar {
  text-align: center;
  margin: 5px;
}

.top {
  font-size: 13px;
  font-weight: bold;
  color: #fc6;
}

/* ===== SIDEBAR BOX ===== */
.right {
  float: right;
  width: 200px;
  background: #ffd;
  margin: 5px 5px 5px 20px;
  padding: 5px;
  border: 1px solid #36d;
  border-radius: 10px;
}

/* ===== TABLE STYLE ===== */
.bgt {
  background: #ffd;
  border: 1px solid #36d;
  border-radius: 10px;
  padding: 5px;
}


/* ===== NAVIGATION ===== */
.nav {
  background: #000090;
}

/* ===== DESKTOP MENU ===== */
#menu_top {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

#menu_top li {
  display: inline-block;
  position: relative;
}

#menu_top li a {
  display: block;
  padding: 2px;
  margin: 2px;
  color: #0f0;
  border: 2px solid #fc6;
  border-radius: 6px;
  text-decoration: none;
}

#menu_top li a:hover {
  color: #f2b20e;
}

/* ===== DESKTOP DROPDOWN (HOVER WORKS) ===== */
#menu_top li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #000090;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 999;
}

#menu_top li:hover > ul {
  display: block;
}

#menu_top li ul li {
  display: block;
}

#menu_top li ul li a {
  display: block;
  width: 100%;
  padding: 2px;
  background: #000090;
  color: #0f0;
  text-align: left;
}

#menu_top li ul li a:hover {
  background: #3333ff;
  color: #fff;
}

/* ===== MOBILE BUTTON ===== */
.menu-toggle {
  display: none;
  background: #000090;
  color: #fff;
  padding: 2px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}

/* hide checkboxes */
#menu-toggle,
.submenu-toggle,
.has-sub input {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* show hamburger */
  .menu-toggle {
    display: block;
  }

  /* hide menu */
  #menu_top {
    display: none;
    flex-direction: column;
  }

  /* show menu when clicked */
  #menu-toggle:checked + #menu_top {
    display: flex;
  }

  /* stack items */
  #menu_top li {
    display: block;
    width: 100%;
  }

  #menu_top li a {
    width: 100%;
    font-size: 14px;
  }

  /* remove hover dropdown on mobile */
  #menu_top li:hover > ul {
    display: none;
  }

  /* show submenu toggle button */
  .submenu-toggle {
    display: inline-block;
    color: #fff;
    padding: 2px;
    cursor: pointer;
  }

  /* submenu hidden */
  .submenu {
    display: none;
    position: static;
  }

  /* show submenu when clicked */
  #sub1:checked ~ .submenu {
    display: block;
  }
}
/* ===== HR FIX ===== */
hr {
  background: #fc6;
  height: 1px;
  border: none;
}

/* ===== HIDE SEARCH (DESKTOP) ===== */
#sear {
  display: none;
}
/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000090;
  color: #fff;
  padding: 3px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-banner p {
  display: inline;
  margin-right: 10px;
  color: #fff;
}

#cookie-banner a {
  color: #fc6;
  text-decoration: underline;
}

#cookie-banner button {
  background: #fc6;
  color: #000;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

#cookie-banner button:hover {
  background: #fff;
}