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

/* src/styles.scss */
body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: #313131;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
a {
  color: #ff7900;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #e56d00;
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #f8fafc;
  font-weight: 700;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #313131;
}
::-webkit-scrollbar-thumb {
  background: #232323;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(60.5, 60.5, 60.5);
}
@media print {
  body * {
    visibility: hidden;
  }
  .analysis-container,
  .analysis-container * {
    visibility: visible;
  }
  .analysis-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none !important;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  body {
    background-color: white !important;
  }
}
.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.table-container .premium-table {
  min-width: 600px;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row .form-group {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .form-row .form-group.half,
  .form-row .form-group.third {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .modal-card {
    width: 95% !important;
    max-width: 95% !important;
    margin: 1rem auto;
    max-height: 90vh;
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .page-header .header-left {
    width: 100%;
  }
  .page-header .header-actions {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .page-header .header-actions button {
    flex: 1;
    justify-content: center;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .filter-bar .filter-group {
    width: 100%;
    margin-right: 0;
  }
  .filter-bar .filter-group select,
  .filter-bar .filter-group input {
    width: 100%;
  }
  .filter-bar .filter-actions {
    width: 100%;
  }
  .filter-bar .filter-actions button {
    width: 100%;
  }
}

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