.header {
  padding: 10px 0;
}
.logo {
  max-height: 45px; /* Adjust logo size */
  width: 150px;
}

#search-results {
  position: absolute;  /* position relative to the nearest positioned ancestor */
  background-color: white;
  border: 1px solid #ccc;
  width: 100%;          /* match width of the search bar container */
  max-height: 200px;    /* optional: max height with scroll */
  overflow-y: auto;     /* vertical scroll if too many items */
  z-index: -1;        /* high z-index to be on top of other content */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;        /* hide by default */
}

/* Make sure search bar container is positioned */
.search-container {
  position: relative;   /* So dropdown absolute positioning is relative to this */
}

.navbar-nav {
  flex-grow: 1; /* Ensure the navigation items remain in one row */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav a {
  color: #333;
  margin: 0 15px;
  text-decoration: none;
}
.header-nav a:hover {
  color: #198754; /* Bootstrap green on hover */
}

.dropdown-item:focus,
.dropdown-item:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  color: inherit !important;
}


.btn-custom {
  margin-left: 10px;
}