/* Reset and base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

/* Top bar */
.top-bar {
  background-color: #13294B;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the text horizontally */
  color: #FF5F05;
}

.top-bar h1 {
  margin: 0;
  font-size: 24px;
}

/* Sidebar */
.sidebar {
  background-color: #FF5F05;
  width: 150px;
  height: calc(100vh - 80px); /* Full height minus the top bar */
  position: absolute;
  top: 100px; /* Below the top bar */
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly; /* Vertically center the items with space */
  color: #13294B;
}

.sidebar a {
  text-decoration: none;
  color: #13294B;
  font-size: 20px;
  font-weight: bold;
}

.sidebar a: hover {
  text-decoration: underline;
}


/* Main content placeholder */
.main-content {
  margin-left: 150px; /* Push away from sidebar */
  padding: 40px;
}
.imgb { 
  padding-left: 35px;
  border: 3px #13294B;
}


