/* scrolling CSS */
:root {
  --font-size-default: 16px;
}

@media (max-width: 768px) {
  :root {
    --font-size-default: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-default: 12px;
  }
}

body::-webkit-scrollbar {
  width: 12px;
  /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
  background-color: #212121;
  /* Color of the scrollbar thumb */
  border-radius: 10px;
  /* Rounded corners of the scrollbar thumb */
  border: 3px solid #f1f1f1;
  /* Padding around the scrollbar thumb */
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--font-size-default);
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.App {
  /* padding: 0.5rem; */
  /* text-align: center; */
}

@media print {
  table {
    width: 100%;
    /* Ensure the table takes the full width of the page */
    border-collapse: collapse;
    /* Remove spacing between table cells */
  }

  th,
  td {
    border: 1px solid black;
    /* Add borders for better readability */
    padding: 8px;
    /* Add padding for clarity */
    text-align: left;
    /* Ensure text alignment is maintained */
  }

  /* Adjust font size if needed */
  body,
  table {
    font-size: 12px;
  }

  /* Ensure headers or footers are hidden if you don't need them */
  header,
  footer {
    display: none;
  }

  /* Handle margins */
  @page {
    margin: 1cm;
  }
}

/*# sourceMappingURL=app.css.map*/