/* style.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.main-content, .navigation-sidebar, .footer-section {
    padding: 20px;
}

.input-section {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.input-section input {
    padding: 10px;
    margin-right: 10px;
    width: 60%;
}

.input-section button {
    padding: 10px;
    cursor: pointer;
}

.feedback-section, .results-display {
    margin: 20px 0;
    padding: 20px;
    background-color: #e9e9e9;
}

.navigation-sidebar {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
}

footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}
/* CSS for the menu bar */
.menu-bar {
  background-color: #333; /* Background color of the menu bar */
  color: white; /* Text color */
  overflow: hidden; /* Ensures that any content overflowing the container is hidden */
}

/* Style for the individual menu items */
.menu-bar a {
  float: left; /* Float the menu items to the left */
  display: block; /* Display as block elements */
  color: white; /* Text color */
  text-align: center; /* Center-align the text within the menu items */
  padding: 14px 16px; /* Padding around the text (top/bottom, left/right) */
  text-decoration: none; /* Remove underline from links */
}

/* Change the background color of the menu items when hovered over */
.menu-bar a:hover {
  background-color: #555;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    display: flex;
    height: 100%;
}

.sidebar {
    width: 20%; /* Adjust based on your preference */
    background-color: #f0f0f0; /* Light grey background */
    padding: 20px; /* Spacing inside the sidebar */
    overflow-y: auto; /* Makes sidebar scrollable if content overflows */
}

.main-content {
    flex-grow: 1; /* Takes up remaining space */
    background-color: #fff; /* White background */
    padding: 20px; /* Spacing inside the main content area */
    overflow-y: auto; /* Makes content area scrollable if content overflows */
}

