/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin-bottom: .5rem;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-thumb {
  background: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.dashboard-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 28px;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), box-shadow .32s, background .32s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000014;
}

.dashboard-card:hover {
  transform: translateY(-10px)scale(1.01);
  box-shadow: 0 30px 60px #325e8f2e;
}

.dashboard-card .card-top-bar {
  background: linear-gradient(90deg, #325e8f, #1e3a5f);
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.card-cta {
  color: #325e8f;
  cursor: pointer;
  z-index: 10;
  background: #325e8f14;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  transition: transform .28s, background .28s, color .28s, box-shadow .28s;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  box-shadow: 0 2px 8px #0000000d;
}

.card-cta:hover {
  color: #fff;
  background: #325e8f;
  transform: translateY(-2px)scale(1.05);
  box-shadow: 0 12px 30px #325e8f38;
}

.card-cta svg {
  transition: transform .28s;
}

.card-cta:hover svg {
  transform: translateX(6px);
}

.stat-value {
  color: #1e293b;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  transition: transform .28s;
}

.dashboard-card:hover .stat-value {
  transform: translateY(-2px);
}

.stat-subtle {
  color: #64748b;
  margin-top: 4px;
  font-size: 14px;
}

.sparkline-placeholder {
  background: linear-gradient(90deg, #eef2ff, #f8fafc);
  border-radius: 8px;
  width: 100%;
  height: 36px;
}

@keyframes pulse-soft {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.error-notice {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 8px 30px #ef444414;
}

.input-error {
  animation: .65s shake;
  box-shadow: 0 6px 20px #ef44441f;
  border-color: #ef4444 !important;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-6px);
  }

  30% {
    transform: translateX(6px);
  }

  50% {
    transform: translateX(-4px);
  }

  70% {
    transform: translateX(4px);
  }

  90% {
    transform: translateX(-2px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: .65s shake;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/