   
:root {
  --border-strong: rgb(195, 194, 183);
  --radius: 8px;
  --text-secondary: rgb(195, 194, 183);
  --text-primary: rgb(255, 255, 255);
}

#intro-probabilities p,
#intro-probabilities h1 {color: #fff;line-height: 1.4;padding-bottom: 8px}
#intro-probabilities {margin-bottom: 16px; max-width: 900px}

/* Roboto Light (300) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300; /* Changed from 200 */
  src: url('/static/assets/fonts/Roboto/woff2/Roboto-Light.woff2') format('woff2');
  font-display: swap;
}

/* Roboto Regular (400) - You were missing this! */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/static/assets/fonts/Roboto/woff2/Roboto-Regular.woff2') format('woff2');
  font-display: swap;
}

/* Roboto Medium (500) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500; /* Changed from 400 */
  src: url('/static/assets/fonts/Roboto/woff2/Roboto-Medium.woff2') format('woff2');
  font-display: swap;
}

/* Roboto SemiBold (600) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('/static/assets/fonts/Roboto/woff2/Roboto-SemiBold.woff2') format('woff2');
  font-display: swap;
}

/* Roboto Bold (700) */
@font-face {
  font-family: 'Roboto';
  font-style: normal; /* Changed from 'bold' */
  font-weight: 700;
  /* Ensure this file is actually .woff2. If it is .ttf, change extension and format below */
  src: url('/static/assets/fonts/Roboto/woff2/Roboto-Bold.woff2') format('woff2'); 
  font-display: swap;
}

/* Roboto Italic (400) */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('/static/assets/fonts/Roboto/woff2/Roboto-Italic.woff2') format('woff2');
  font-display: swap;
}   

    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Roboto', sans-serif;
    }
     html {
      background-color: rgb(0, 0, 0);
      padding: 24px 16px;
      font-family: 'Roboto', sans-serif;
    }
body, p, h1, h2, h3, ol, ul, li {
    font-family: 'Roboto', sans-serif;
}
    .filter-btn{
    font-size: 12px;
    padding: 5px 12px;
    border-radius: var(--radius, 8px);
    border: 0.5px solid var(--border-strong);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 5px;
}
button:not(#action-btns button):not(form.elicit button)
 {
    padding: 8px 16px;
    font-size: 14px;
    background: transparent;
    color: var(--text-primary);
    border: 0.5px solid var(--border-strong);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    border-radius: 4px;
}
  .controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 600;
}
.filter-btn {
  color: #fff;
}
.filter-btn .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}
.legend-line {
    width: 24px;
    height: 2px;
}
#infoModal h2 {margin-bottom: 12px; }
#infoModal p {line-height: 1.25; margin-bottom: 8px; color: rgb(80, 78, 79)}