
 /*  BUZZ Bell*/
/* Hide by default */
.hasMsgBell {
  display: none !important;
  position: relative;
  top: 6px;
}

/* When bell should be shown */
.show-bell {
  display: flex !important;
}

 @keyframes pulseBell {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
 
 
.hasMsgBell .t-Button {
  background-color: #ff6633;
  margin-left: 8px;
  padding: 6px;              /* tighten the button */
  box-shadow: 0 0 5px rgba(0,0,0,0.2); /* subtle shadow */
  color: white;
  animation: pulseBell 1.2s infinite;
}


 /* Target the bell nav item only */
.t-NavigationBar-item.hasMsgBell {
  float: none;
  width: auto;
  display: flex;
  align-items: center;
  padding: 0 0.5rem; /* optional spacing */
}

.hasMsgBell .fa-bell {
  font-size: 18px;
  line-height: 1;
}


@keyframes buzzPulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(1);   opacity: 1; }
}

.hasMsgBee.show-buzz {
  display: flex !important;
  animation: buzzPulse 1.2s infinite;
}

/*Buzz ID*/
.buzz-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #3b6ca1; /* Theme blue */
  color: white;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}