/* Custom CSS for responsive full-width layout */

/* Main container - expand to use more screen width */
.main-container {
  max-width: 95% !important;
  width: 95% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2.5% !important;
  padding-right: 2.5% !important;
}

/* For very large screens, limit to prevent too wide */
@media (min-width: 1920px) {
  .main-container {
    max-width: 1800px !important;
  }
}

/* For medium-large screens */
@media (min-width: 1440px) and (max-width: 1919px) {
  .main-container {
    max-width: 90% !important;
  }
}

/* Adjust table widths */
.table {
  width: 100% !important;
}

/* Plotly charts - full width */
.plotly {
  width: 100% !important;
  max-width: 100% !important;
}

/* DataTables - full width */
.dataTables_wrapper {
  width: 100% !important;
}

/* Grid layouts - more columns on wider screens */
@media (min-width: 1400px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 1800px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Better spacing for wide screens */
@media (min-width: 1200px) {
  .section-header {
    margin: 80px 0 50px 0;
  }

  .hero {
    padding: 100px 40px;
  }
}
