/* SL Login Menu Styles */

/* Username link */
.usernameknop {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1em;
  gap: 0.5em;
}

/* Avatar vóór de naam */
.sl-avatar {
  width: var(--sl-avatar, 28px);
  height: var(--sl-avatar, 28px);
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
}
.sl-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Container */
.ld-login-menu {
  display: flex;
  gap: 1em; /* 1em ruimte tussen knoppen */
}

/* Login knop */
.loginknop {
  color: #000 !important;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 0.5em 1em;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease;
}
.loginknop:hover {
  color: #000 !important;
  background-color: #162f71 !important;
  border-color: #000;
  border-radius: 30px;
  padding: 0.5em 1em;
  text-decoration: none;
}

/* Extra (ongewijzigd uit je eerdere CSS) */
.expertsbox {
  border-radius: 15px;
}

.login-error {
  color: red;
}

/* Verberg .jointheacademy als gebruiker is ingelogd */
body.logged-in .jointheacademy {
  display: none !important;
}
