.edge-menu-mapris {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: rgba(255, 240, 245, 0.85); /* Rosado claro translúcido */
  color: #4a148c;
  font-family: 'Segoe UI', sans-serif;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 99999;
  border-left: 4px solid #f48fb1;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.edge-menu-mapris.open {
  right: 0;
}

.edge-tab-mapris {
  position: absolute;
  left: -42px;
  top: 40%;
  width: 42px;
  height: 100px;
  background: linear-gradient(to bottom, #f06292, #ec407a);
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 100px;
  cursor: pointer;
  border-radius: 12px 0 0 12px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.25);
  user-select: none;
}

.edge-content-mapris {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edge-content-mapris a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a1b9a;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.edge-content-mapris a:hover {
  background: #f8bbd0;
  color: #ad1457;
  transform: scale(1.03);
}

.edge-content-mapris a.active {
  background-color: #fce4ec;
  color: #c2185b;
  box-shadow: inset 0 0 0 2px #f48fb1;
  font-weight: bold;
  transform: scale(1.04);
}

.notificacion {
  background: #d81b60;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: auto;
}

.edge-bienvenida {
  background: #ffe4ec;
  color: #ec407a;
  font-weight: bold;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.4);
}


