.fw-semibold {
    font-weight: 600 !important;
}
@keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.02);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}

.pulse-animation {
    animation: pulse 0.3s ease-in-out;
}
