/*
 * 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.
 */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.widget-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 0.75rem;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 8px 30px rgb(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.widget-card:hover {
  box-shadow: 0 8px 30px rgb(0, 0, 0, 0.08);
  border-color: rgba(199, 210, 224, 0.7);
}

.dark .widget-card {
  background: rgba(31, 41, 55, 0.6);
  border-color: rgba(55, 65, 81, 0.5);
  box-shadow: 0 8px 30px rgb(0, 0, 0, 0.5);
}
.dark .widget-card:hover {
  box-shadow: 0 8px 30px rgb(0, 0, 0, 0.7);
  border-color: rgba(75, 85, 99, 0.7);
}