.faded-alert{
    border: #eee!important;
    background-color: #fffae9!important;
    opacity: .5!important;
}

.offcanvas-container {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 1050;
}
@keyframes pulseOpacity {
    0% { opacity: 0.5; }
    50% { opacity: 0.2; }
    100% { opacity: 0.5; }
  }
  
  .loading-disabled {
    pointer-events: none;
    animation: pulseOpacity 1s infinite;
  }

  .chat-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    overflow-y: auto;
  }
  
  .chat-message {
    max-width: 60%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    position: relative;
    word-wrap: break-word;
  }
  
  .chat-message.sent {
    background-color: #0d6efd;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
  }
  
  .chat-message.received {
    background-color: #f1f3f5;
    color: #212529;
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
  }
  
  .chat-meta {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    opacity: 0.7;
  }
  
  .chat-content {
    white-space: pre-wrap;
  }
  