/* Custom styles for the documentation site */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* CSS Variables for Chart Color Palette (used in Plotly charts) */
:root {
  --chart-primary: #FF4438;
  --chart-secondary: #C796E4;
  --chart-accent: #DCFF1C;
  --chart-info: #7FDBFE;
  --chart-success: #4CAF50;
  --chart-warning: #FFC107;
}

/* Global Font Settings */
body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Code Font Settings */
code, pre, .code, kbd, samp {
  font-family: 'Space Mono', 'Courier New', monospace !important;
}

/* Navbar - use dark header color */
.navbar {
  background-color: #2c3e50 !important;
}

/* Improve callout boxes */
.callout {
  border-left-width: 5px;
  border-radius: 5px;
  margin: 1.5rem 0;
}

.callout-tip {
  border-left-color: #28a745;
}

.callout-important {
  border-left-color: #dc3545;
}

.callout-note {
  border-left-color: #17a2b8;
}

.callout-warning {
  border-left-color: #ffc107;
}

/* Better table styling */
table {
  margin: 1.5rem 0;
  border-collapse: collapse;
  width: 100%;
}

table thead {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

table th {
  font-weight: 600;
  padding: 0.75rem;
  text-align: left;
}

table td {
  padding: 0.75rem;
  border-bottom: 1px solid #dee2e6;
}

table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Grid layout improvements */
.grid {
  margin: 1.5rem 0;
}

/* Code block improvements */
pre {
  border-radius: 5px;
  padding: 1rem;
}

/* Navbar improvements */
.navbar-brand {
  font-weight: 600;
}

/* Footer improvements */
.page-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

