body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px; /* ajuste conforme o design */
  padding: 0 1rem;
  background-color: #2c3e50;
  color: white;
}

.top-nav a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

.top-nav a:hover {
  text-decoration: underline;
}

.nav-left a:last-child {
  margin-right: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px; /* espaço reservado */
}

.nav-right .username {
  margin-left: 10px;
}

#avatar_profile img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c9ced6;
}