

.notification {
  padding: 0px 25px;
  position: relative;
  display: inline-block;
}

.notification .badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 13px;
  height: 18px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: #e41e3f; /* Facebook-style red */
  border-radius: 999px; /* pill shape */
  box-shadow: 0 0 0 2px #fff; /* subtle white border like Facebook */
}

.notification:hover .badge {
  background-color: #c91832; /* slightly darker red on hover */
}

.notificationPerModule {
  position: relative;
  display: inline-block;
}
.notificationPerModule .badgePerModule {

  position: absolute;
  top: -4px;
  right: -83px;
  min-width: 12px;
  height: 18px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: #e41e3f; /* Facebook-style red */
  border-radius: 999px; /* pill shape */
  box-shadow: 0 0 0 2px #fff; /* subtle white border like Facebook */
}

.notificationPerModule:hover .badgePerModule {
  background-color: #c91832; /* slightly darker red on hover */
}