/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

@keyframes logEntryAppear {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logCardHighlight {
  0%   { box-shadow: 0 22px 60px rgba(0,0,0,0.22); }
  20%  { box-shadow: 0 22px 60px rgba(0,0,0,0.22), 0 0 0 2px rgba(251,191,36,0.28); }
  100% { box-shadow: 0 22px 60px rgba(0,0,0,0.22); }
}

.log-entry-appear {
  animation: logEntryAppear 260ms ease-out both;
}

.log-entry-highlight {
  animation: logCardHighlight 1400ms ease-out both;
}
