.fab-container {
  position: relative;
  width: 70px;
  height: 70px;
  cursor: pointer;
  right: -25px;
  top: 25px;
}

.fab-container2 {
  position: relative;
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.float {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background-color: #eff0f0;
  border-radius: 50%;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.circular-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  animation: rotateText 6s linear infinite;
  z-index: 1;
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.text-truncate-custom {
  max-width: 100%;
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-word;
}

.cardNotification.active {
  border: 2px solid #0d6efd; /* bootstrap primary blue */
  background-color: #e7f1ff; /* sfondo leggero, opzionale */
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
  transition: all 0.3s ease;
}