.dashboard {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
  margin: 100px 0 100px 0;
}

.profileHeader {
  width: 100%;
  height: 60px;
  display: flex;
  padding: 15px 10px 0 0;
}

.headerMenu {
  display: flex;
  padding-top: 5px;
}

.headerMenu > * {
  height: min-content;
}

.headerTitle {
  color: white !important;
  cursor: pointer;
  align-self: center;
  flex-grow: 1;
  font-family: var(--titleFont);
  font-size: 2em;
  text-align: left;
  white-space: nowrap;
  padding-left: 15px;
  padding-right: 20px;
}

.headerTitle:hover {
  text-decoration: none !important;
}

.headerTitle:active {
  font-size: 1.8em;
}

.iconColor {
  color: black;
}

.menuButton {
  margin-left: 5px;
  margin-right: 5px;
}

.dropdown {
  display: flex;
}

#btnAddProject {
  width: 150px;
}

.dropdown-menu {
  cursor: pointer;
}

.emptyDashboardMessage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.imgEmptyDashboard {
  content: url('../../assets/emptyDashboard.svg');
  width: 350px;
  aspect-ratio: 1009 / 789;
}

.lblEmptyDashboard {
  font-size: 1.5em;
  margin-top: 10px;
}

#btnAddProjectEmpty {
  margin-top: 10px;
  width: 200px;
}

#iconPlus {
  margin-right: 8px;
}

#inputSearch {
  margin: 0;
  width: 300px;
  transition: all 0.5s ease;
  overflow: hidden;
}

#inputSearch.hide {
  width: 0px;
  padding: 0;
  border: none;
}

#btnSearch {
  color: white;
  padding: 0;
  align-self: center;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}

#searchInputGroup {
  width: auto;
}

.uxMessage {
  text-align: left;
}

.uxQuestion,
.uxAnswer {
  color: black;
}

.uxQuestion {
  display: grid;
  justify-content: start;
}

.answerGroup {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  padding-left: 1rem;
  height: 30px;
}

.answerGroup input[type='radio'] {
  width: min-content;
}

.answerGroup label {
  color: black;
  margin-bottom: 0.25rem;
}

.lastActive {
  color: silver;
}

@media only screen and (max-width: 1200px) {
  #searchInputGroup {
    display: none;
  }
}

@media only screen and (max-width: 760px) {
  #btnAction,
  #btnSortDropdown,
  #btnFilterDropdown {
    display: none;
  }
}
