
/* CSS Reset and Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h3 {
  font-size: 14px !important;
  text-align: left !important;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.toast-notification.toast-success {
    background-color: #4CAF50; /* Green */
}

.toast-notification.toast-error {
    background-color: #f44336; /* Red */
}

.toast-notification.toast-info {
    background-color: #2196F3; /* Blue */
}

.static-content-page h1,
.static-content-page h2,
.static-content-page h3 {
    margin-top: 1.5em; /* Add space above headings */
    margin-bottom: 0.75em; /* Add space below headings */
}

.static-content-page p {
    margin-bottom: 1em; /* Add space between paragraphs */
    line-height: 1.6;  /* Improve readability */
}

/* Fix for the tables in your image */
.static-content-page table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}

.static-content-page th,
.static-content-page td {
    border: 1px solid #ccc;
    padding: 12px; /* Add padding inside table cells */
    text-align: left;
    vertical-align: top;
}

/* Fix for the bulleted lists */
.static-content-page ul {
    list-style-type: disc; /* Ensure bullets are visible */
    padding-left: 40px; /* Add indentation for the list */
    margin-bottom: 1em;
}

.static-content-page li {
    padding-left: 10px; /* Space between bullet and text */
    margin-bottom: 0.5em; /* Space between list items */
}

h1{
  justify-self: center;
  margin: 0;
  padding: 20px 0;
}