@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
  :root {
    --primary-color: #007bff;
    --background-color: #f0f0f0;
    --container-background-color: #f7fafd;
    --text-color: #333;
    --input-border-color: #ccc;
    --input-border-radius: 0.25rem;
  }
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 1rem;
  }
  
  .main-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
  }
  
  .container {
    background-color: var(--container-background-color);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }
  
  .container:first-child {
    margin-right: 2rem;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
  }
  
  h1,
  h2,
  h3,
  h4 {
    color: var(--text-color);
    font-family: 'Roboto', Arial, sans-serif;
  }
  
  h1 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  p,
  li,
  td,
  button,
  input,
  div {
    font-family: 'Roboto', Arial, sans-serif;
  }
  
 
  
  label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
  }
  
  input,
  button,
  select {
    font-size: 1rem;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    outline: none;
    background-color: var(--container-background-color);
    color: var(--text-color);
  }
  
  button {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    cursor: pointer;
    font-weight: 700;
    max-width: 14rem;
  }
  
  button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  pre {
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: var(--input-border-radius);
    white-space: pre-wrap;
    color: var(--text-color);
  }
  
  @media (max-width: 767px) {
    h1 {
      font-size: 1.2rem;
    }
  
    .container {
      padding: 1rem;
    }
  }
  
  th,
  td {
    border: 1px solid #333;
    padding: 3px;
    text-align: left;
  }
  
  th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .bc {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  
  .b {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font: 18px bold;
  }
  
  .b span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .g {
    background: linear-gradient(135deg, #9dffce 0%, #50d18d 100%);
    color: #11522f;
  }
  
  .y {
    background: linear-gradient(135deg, #ffeb9d 0%, #d1b452 100%);
    color: #5f4c22;
  }
  
  .r {
    background: linear-gradient(135deg, #ff9d9d 0%, #d15252 100%);
    color: #5f2222;
  }
  