/* DeltaOps Dashboard Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism Cards */
.card {
  border-radius: 12px !important;
  background-color: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ag-theme-alpine-dark {
  --ag-background-color: #0c1f33 !important;
  --ag-header-background-color: #050f1d !important;
  --ag-border-color: rgba(255, 255, 255, 0.1) !important;
  --ag-border-radius: 12px !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Button Hover Effects */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
}

.btn-primary {
  background: linear-gradient(135deg, #0cc5c8 0%, #37a2d7 100%) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(12, 197, 200, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 197, 200, 0.3);
}

/* Filters Card Specifics */
#filters-card .card-header {
  background: linear-gradient(
    135deg,
    rgba(12, 197, 200, 0.1) 0%,
    rgba(55, 162, 215, 0.1) 100%
  ) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Chart Container Fade-In */
.js-plotly-plot {
  animation: fadeIn 0.6s ease-out;
}

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