html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #dddddd;
  border-width: 0px 5px 5px 5px;
  border-style: solid;
  border-color: #9a9a9a;
  box-sizing: border-box;
  font-family: "Tahoma", sans-serif;
}

/* Title Bar */
.title-bar {
  background: #000080;
  color: white;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.title-bar button {
  background: red;
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

/* Searchbar */
.searchbar-container {
  background: #9a9a9a;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.searchbar {
  width: 50%;
  padding: 5px;
  border: 2px inset #bbbbbb;
  background: white;
  font-size: 14px;
}

/* Blog Navigation */
.blog-nav {
  background: #c0c0c0;
  padding: 8px;
  text-align: left;
  border-bottom: 2px solid #9a9a9a;
}
.blog-nav button {
  background: #000080;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
}
.blog-nav button:hover {
  text-decoration: underline;
}

/* Blog Box */
.main-content {
  padding: 15px;
}
.blog-box {
  background: white;
  border: 2px inset #bbbbbb;
  padding: 15px;
}
.blog-title {
  font-size: 22px;
  color: #000080;
  margin: 0 0 10px 0;
}
.blog-meta {
  font-size: 12px;
  color: #555;
  margin-bottom: 15px;
}

/* Blog Images */
.blog-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.blog-images img{
  max-width: 48%;
  border: 2px inset #bbbbbb;
  background: white;
  padding: 2px;
}

.blog-images iframe {
  width: 48%;
  height: 250px;
  border: 2px inset #bbbbbb;
  background: white;
}

/* Blog Body */
.blog-body {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
