/* Reset */
body, h1, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
}

a {
  text-decoration: none;
  color: #0070aa;
}

a:hover {
  color: #004477;
}

#wrapper-box {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
#main-banner {
  display: flex;
  align-items: center;
  background: #0070aa;
  color: white;
  padding: 16px;
  position: relative;
}

.site-icon {
  margin-right: 10px;
}

.site-name {
  font-size: 24px;
  flex-grow: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.menu-toggle span {
  background: white;
  height: 4px;
  border-radius: 2px;
}

/* Navigation */
.hidden-nav {
  display: none;
  background: #005a99;
}

.hidden-nav.visible {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 10px;
  justify-content: center;
}

.nav-links li a {
  color: white;
  font-weight: bold;
}

/* Layout */
#layout-body {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.content-area {
  flex: 3;
}

.content-area img {
  width: 100%;
  border-radius: 6px;
}
.title_banner {
  background: linear-gradient(to right, #222, #444);
  color: #fff;
  font-size: 1.8em;
  letter-spacing: 0.05em;
  padding: 0.6em 1.2em;
  border-left: 6px solid #ff5500;
  border-radius: 4px;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  margin: 0 0 1em;
}
.section-header {
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
}

.divider-line {
  margin: 20px 0;
  border-top: 1px solid #ccc;
}

/* Sidebar */
.sidebar-box {
  flex: 1;
  background: #e8f1fb;
  padding: 16px;
  border-radius: 8px;
}

.lookup-wrap {
  position: relative;
}

.lookup input[type="text"] {
  width: 75%;
  padding: 5% 20% 5% 5%;
  border: 1px solid #9dc5e8;
  border-radius: 25px;
}

.lookup button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #9dc5e8;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.lookup button img {
  width: 16px;
  height: 16px;
}


.menu-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 25px 0 10px;
  border-left: 5px solid #0070aa;
  padding-left: 10px;
}

ul.list1 {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}

ul.list1 li {
  margin-bottom: 8px;
}

ul.list1 li a {
  display: block;
  padding: 10px;
  background-color: #f5f5f5;
  color: #0070aa;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

ul.list1 li a:hover {
  background-color: #0070aa;
  color: #fff;
}


/* Footer */
#footer-box {
  text-align: center;
  padding: 16px;
  background: #005a99;
  color: white;
  margin-top: 40px;
}
.sp_mode_only {
  display: none;

}
/* Responsive */
@media (max-width: 950px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  #layout-body {
    flex-direction: column;
  }

  .hidden-nav {
    display: none;
  }

  .hidden-nav.visible {
    display: block;
  }

  .sidebar-box {
    position: fixed;
    right: -300px;
    top: 0;
    height: 100%;
    width: 250px;
    background: #6495ed;
    color: white;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .sidebar-box.visible {
    right: 0;
  }

  .sidebar-box a {
    color: white;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .sidebar-box a:hover {
    color: #ffcc00;
  }
.sp_mode_only {
  display: block;

}
}