/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 /* #message-list{
    height: calc(100vh - 254px);
 } */

  .glow-border {
    border-radius: 1.5rem;
    transition: box-shadow 0.3s ease;
  }
  
  .glow-border.active {
    background: linear-gradient(135deg, #049668, #7DE2D1);
    animation: glow-animation 1.5s ease-in-out infinite;
  }
  
@keyframes glow-animation {
  0% {
    box-shadow: 0 0 5px #049668, 0 0 10px #7DE2D1;
  }
  50% {
    box-shadow: 0 0 8px #7DE2D1, 0 0 12px #049668;
  }
  100% {
    box-shadow: 0 0 5px #049668, 0 0 10px #7DE2D1;
  }
}

.center-on-mobile{
   @media screen and (max-width: 768px) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    
   }
}