/* Modern styling for your documentation */

/* Custom styling for headers */
.md-typeset h1 {
    color: var(--md-primary-fg-color);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .md-typeset h2 {
    font-weight: 600;
    border-bottom: 1px solid var(--md-default-fg-color--lightest);
    padding-bottom: 0.2rem;
  }
  
  /* Better code blocks */
  .md-typeset pre > code {
    border-radius: 4px;
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--md-default-bg-color);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--md-primary-fg-color--light);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--md-primary-fg-color);
  }
  
  /* Custom styling for admonitions */
  .md-typeset .admonition,
  .md-typeset details {
    border-width: 0;
    border-left-width: 4px;
    border-radius: 4px;
  }
  
  /* Card-like styling for sections */
  .md-typeset .card {
    background-color: var(--md-default-bg-color);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .md-typeset .card:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  
  /* Custom styling for tables */
  .md-typeset table:not([class]) {
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .md-typeset table:not([class]) th {
    background-color: var(--md-primary-fg-color--light);
    color: var(--md-primary-bg-color);
    font-weight: 600;
  }
  
  .md-typeset table:not([class]) tr:nth-child(2n) {
    background-color: rgba(0, 0, 0, 0.025);
  }