/* Styling for the top navigation bar */
.top-bar {
  background-color:#c8102e;
  height: 60px;
  padding: 10px;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Styling for the container of user information */
.username-container {
  display: flex;
  align-items: center;
  position: relative;

  #avatarAndProfile{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  #avatarAndProfile:hover{
    cursor: pointer;
    /* background-color:#5f0707; */
  }

  .dropdown-icon{
    width: 10px;
    height: 10px;
    color: white;
  }
}

/* Styling for the username (user's full name) */
.username {
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

/* Styling for the circle container to display user initials */
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  color: #c8102e;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-weight: bold;
}

/* Styling to show the dropdown menu when the container is active */
.username-container.active .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  margin-top: 4px;
  z-index: 100;
}

/*
Below is for styling the user logout/setting menu dropdown
*/
