/* Basic Reset */
body { font-family: sans-serif; margin: 0; }

/* Navbar Container */
.navbar {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
}

.menu-bar {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

/* Individual Menu Labels (File, Edit, etc) */
.menu-item {
  position: relative;
  padding: 10px 20px;
  cursor: pointer;
}

.menu-item:hover {
  background-color: #e0e0e0;
}

.menu-item a {
  text-decoration: none;
  color: #333;
}

/* The Secret Sauce: Dropdown Logic */
.dropdown {
  display: none; /* Hide by default */
  position: absolute;
  top: 100%; /* Position directly below the parent */
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  list-style: none;
  padding: 5px 0;
  z-index: 10;
}

/* Show dropdown on hover */
.menu-item:hover .dropdown {
  display: block;
}

/* Dropdown Links */
.dropdown li a {
  padding: 8px 20px;
  display: block;
    white-space: nowrap;

}

.dropdown li a:hover {
  background-color: #0078d7;
  color: white;
}

/* Horizontal Divider */
hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 5px 0;
}

