@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap";

/* projects/admin-app/src/styles.scss */
@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}
.animate-slideUp {
  animation: slideUp 0.4s ease-out forwards;
}
.animate-scaleIn {
  animation: scaleIn 0.3s ease-out forwards;
}
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.02);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: #1E293B;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #F8FAFC;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
}
h1 {
  font-weight: 800;
  background:
    linear-gradient(
      135deg,
      #1A3A5C 0%,
      #2D5F8A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(26, 58, 92, 0.25);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 58, 92, 0.45);
}
.main-layout {
  display: flex;
  padding: 20px;
  gap: 20px;
  height: 100vh;
  overflow: hidden;
}
.content-area {
  flex: 1;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 32px;
  overflow-y: auto;
  box-shadow: 0 1px 4px rgba(26, 58, 92, 0.08);
  position: relative;
}
.btn-glass-primary {
  background:
    linear-gradient(
      135deg,
      rgba(26, 58, 92, 0.92),
      rgba(45, 95, 138, 0.92));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px -5px rgba(26, 58, 92, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-glass-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -5px rgba(26, 58, 92, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-glass-primary:active {
  transform: translateY(0) scale(0.98);
}
.stagger-in > * {
  opacity: 0;
  animation: slideUpFade 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.stagger-in > *:nth-child(1) {
  animation-delay: 0.05s;
}
.stagger-in > *:nth-child(2) {
  animation-delay: 0.1s;
}
.stagger-in > *:nth-child(3) {
  animation-delay: 0.15s;
}
.stagger-in > *:nth-child(4) {
  animation-delay: 0.2s;
}
.stagger-in > *:nth-child(5) {
  animation-delay: 0.25s;
}
.stagger-in > *:nth-child(6) {
  animation-delay: 0.3s;
}
.stagger-in > *:nth-child(7) {
  animation-delay: 0.35s;
}
.stagger-in > *:nth-child(8) {
  animation-delay: 0.4s;
}
.stagger-in > *:nth-child(9) {
  animation-delay: 0.45s;
}
.stagger-in > *:nth-child(10) {
  animation-delay: 0.5s;
}
.stagger-in > *:nth-child(11) {
  animation-delay: 0.55s;
}
.stagger-in > *:nth-child(12) {
  animation-delay: 0.6s;
}
.stagger-in > *:nth-child(13) {
  animation-delay: 0.65s;
}
.stagger-in > *:nth-child(14) {
  animation-delay: 0.7s;
}
.stagger-in > *:nth-child(15) {
  animation-delay: 0.75s;
}
.stagger-in > *:nth-child(16) {
  animation-delay: 0.8s;
}
.stagger-in > *:nth-child(17) {
  animation-delay: 0.85s;
}
.stagger-in > *:nth-child(18) {
  animation-delay: 0.9s;
}
.stagger-in > *:nth-child(19) {
  animation-delay: 0.95s;
}
.stagger-in > *:nth-child(20) {
  animation-delay: 1s;
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1024px) {
  .main-layout {
    padding: 0;
    gap: 0;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .content-area {
    border-radius: 0;
    padding: 16px;
    height: auto;
    min-height: calc(100vh - 64px);
    overflow-y: visible;
  }
}
@media (max-width: 640px) {
  .content-area {
    padding: 12px;
  }
}
@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }
  body.printing-proforma {
    height: 297mm !important;
    overflow: hidden !important;
    max-height: 297mm !important;
  }
  body.printing-proforma * {
    visibility: hidden !important;
  }
  body.printing-proforma .invoice-preview,
  body.printing-proforma .invoice-preview * {
    visibility: visible !important;
  }
  body.printing-proforma .invoice-preview {
    position: fixed !important;
    inset: 0 !important;
    padding: 10mm 15mm !important;
    margin: 0 !important;
    background: white !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
