.horizontal-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.horizontal-menu {
  margin-top: -10px; /* Adjust this value as needed to move the menu up */
}
.horizontal-menu li {
  float: left;
}
.horizontal-menu li a {
  display: block;
  color: #000;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 12px; /* Adjust font size */
}
.horizontal-menu li a:hover {
  text-decoration: underline;
  background-color: #ddd;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-menu {
  font-size: 12px; /* Adjust font size */
}
.profile {
  position: absolute;
  top: 1px;
  right: 10px;
}
.dropdown-menu {
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

/* Add at the end of the file */
.glyphicon-spin {
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


