/* ************************************************************
:: Author Name: Mohammed Qadeer
:: Author URI:support@a11ychecks.com
:: Created: 31 Aug 2023
************************************************************ 
/* Reset some default styles */

body, ul {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
}

.toc {
  font-family: 'Poppins', sans-serif;
  width: 300px;
  padding: 20px;
  font-weight: 600;
  border-right: 1px solid #ccc;
}

.toc-header {
  background-color: #333;
  color: white;
  padding: 10px;
  font-weight: 800;
  cursor: pointer;
}

.toc-content {
  display: none;
  background-color: #35F6EA;
}

/* New font color introduced */



/* Styling for the entire list container */
.nav-container {
    background-color: #f0f0f0; /* Change background color */
    padding: 10px;            /* Add padding to the container */
}

/* Styling for the left nav menu */
.left-nav-ul .left-nav-ul ul {
    list-style-type: square; /* Change the bullet point style */
    margin-left: 20px;    /* Add some left margin for indentation */
}

.left-nav-ul a:hover {
    text-decoration: underline; /* Change the bullet point style */
}

/* Styling for the left nav menu */
.left-nav-li > ul {
    color: #333;          /* Change text color */
    font-size: 16px;      /* Change font size */
    margin-bottom: 8px;   /* Add some spacing between list items */
}

/* Styling for the content unordered list */
.content-nav-ul ul > li {
    margin-left: 20px;    /* Add some left margin for indentation */
}

/* Styling for the list items */
.content-nav-li {
    color: #000;          /* Change text color */
    font-size: 16px;      /* Change font size */
    margin-bottom: 5px;   /* Add some spacing between list items */
    list-style-type: square; /* Change the bullet point style */
    margin-left: 20px;    /* Add some left margin for indentation */

}

/* Styling for the entire list container */
.list-container {
    background-color: #f0f0f0; /* Change background color */
    padding: 10px;            /* Add padding to the container */
}

/* Styling for list items within the container */
.list-container ul {
    list-style-type: square;     /* Change the bullet point style */
    margin-left: 20px;    /* Add some left margin for indentation */

}

.list-container li {
    color: #000;              /* Change text color */
    font-size: 16px;          /* Change font size */
    margin-bottom: 8px;       /* Add some spacing between list items */
}

/* Show content when header is clicked */
.toc-header.active + .toc-content {
  display: block;
}

.content {
  flex: 1;
  padding: 10px;
}

.paragraph-container {
  margin-top: 20px; /* Adds space above the container */
}

.wb-inv {
   clip: rect(1px,1px,1px,1px);
   height: 1px;
   margin: 0;
   overflow: hidden;
   position: absolute;
   width: 1px;
}

.paragraph {
    margin-top: 20px;
     margin-bottom: 30px; /* Adds space below each paragraph */
     
}

/* Apply some basic styling to the table */
.bordered-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #000;
}

.bordered-table th, .bordered-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
}

.footer {
  background-color: black;
  color: white;
  padding: 20px 0;
  display: flex;
  justify-content: space-around;
}

.footer-column {
  flex: 1;
  padding: 0 20px;
}

.footer-column h3 {
  margin-bottom: 10px;
}

