.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  font-family: url(Assets/font/MINIONPRO-BOLD.OTF);
}

.navbar .left img.logo {
  width: 100px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.navbar .middle button {
  background-color: #444;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 5px;
}

.navbar .middle button:hover {
  background-color: #555;
}

.navbar .right {
  margin-right: 20px; /* Add margin to the right of the right section */
}

.navbar .profile-button {
  display: flex;
  align-items: center;
  background-color: #444;
  color: white;
  border: none;
  padding: 5px 10px; /* Reduced padding */
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  transition: background 0.3s;
}

.navbar .profile-button:hover {
  background-color: #555;
}

.navbar .profile-img {
  height: 30px; /* Reduced size */
  width: 30px; /* Reduced size */
  border-radius: 50%;
  margin-left: 10px;
}

.navbar .username {
  font-size: 14px; /* Reduced font size */
  color: white;
}
