/* jQuery UI Dialog close button styling */
.ui-dialog-titlebar-close {
  position: relative;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  overflow: hidden;
}

.ui-dialog-titlebar-close:before {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #333;
}

.ui-dialog-titlebar-close:hover:before {
  color: #000;
}

.ui-dialog-titlebar-close:focus {
  outline: 2px solid #0074bd;
  outline-offset: 2px;
}

/* Menu user info styling */
.menu-user-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  top: -2px; /* experimented out for user image */
}

.menu-user-picture {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border-width: 2px;
  border-style: solid;
  border-color: #e97132;
}

.menu-user-name {
  white-space: nowrap;
}
