/* style.css */

body {
  margin: 0; /* Remove default body margin */
  font-family: "Source Sans Pro", sans-serif; /* Consistent font */
}
CSS

.sidebar-results {
    display: none;  
}

body.results-page .sidebar-results {  
    display: block;
}

h1 {
  color: #007bff;
  background-color: #f0f0f0;
  padding: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 4em;
  text-shadow: 2px 2px 4px #000000;
}

h2 {
  color: #007bff;
  background-color: #f0f0f0;
  padding: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 2em;
 
}




/* Sidebar Styles */
.sidebar { /* Use a class for the sidebar */
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 25%; /* Adjust width as needed */
  background-color: #f1f1f1;
  position: fixed; /* Fixed sidebar */
  height: 100%;
  overflow: auto;
}

.sidebar li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.sidebar li a.active {
  background-color: #04AA6D; /* Green active button */
  color: white;
}

.sidebar li a:hover:not(.active) {
  background-color: #555; /* Darker background on hover */
  color: white;
}

/* Content Area Styles */
.content {  /* Use a class for the main content */
  margin-left: 25%; /* Match sidebar width */
  padding: 1px 16px;
  /* Add other content styles as needed */
}
