
/* HEADER */
.dashboard-header {
  background-color: #1e1e2f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}
.region-header {
  border-right: 1px solid #28E7C5;
  margin-right: 2px;
  padding-right: 10px;
}
.logo-block .logo {
  height: 36px;
}

.date-block {
  font-weight: 500;
  font-size: 0.95rem;
  color: #cfcfe8;
}

.user-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.user-block .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #28E7C5;
  object-fit: cover;
}
.ia-manager{
  width: 45px;
  height: 45px;
   object-fit: cover;
   cursor: pointer;
}
/* MENU PRINCIPAL */
.dashboard-menu {
  background-color: #23233a;
  padding: 1rem 2rem;
}

.dashboard-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 3rem;
}

.dashboard-menu .menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dashboard-menu .menu-group > span {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9da5c0;
  margin-bottom: 0.4rem;
}

.dashboard-menu .menu-group ul {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.dashboard-menu a {
  color: #e3e3f3;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dashboard-menu a:hover {
  color: #5BA43A;
  text-decoration: underline;
}
.user-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
}

.user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.user-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: #28E7C5;
  text-align: right;
}

.user-email {
  font-size: 0.7rem;
  color: #a1a1d6;
}
.user-logout {
  font-size: 0.7rem;
  color: #cc3d3d;
  text-align: right;
}
.user-logout a {
  color: #cc3d3d;
  text-decoration: none;
}