.blog-container {
        width: 80%;
        max-width: 1200px;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin: auto; /* Center the container horizontally */
        
    }

    .blog-header {
        background-color: #333;
        color: #fff;
        padding: 20px;
        text-align: center;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .blog-main {
        padding: 20px;
    }

    .blog-footer {
        text-align: center;
        font-size: 0.8em;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #333;
        color: #fff;
        padding: 10px;
    }

    h1, h2, h3 {
        color: #333;
        text-align: center;
    }
    /* Default margin for p tags */
p {
    margin-left: 150px;
    margin-right: 150px;
    font-size: 19px; /* Default font size */
}

/* Media query for screens less than 600px */
@media screen and (max-width: 750px) {
    p {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 17px; /* Decrease font size for smaller screens */
    }
}

    section {
        margin-bottom: 30px;
    }

    article {
        margin-bottom: 50px;
    }

    /* Other styles remain unchanged */

    .table-container {
            text-align: center;
            margin: 0 auto; /* Center the container horizontally */
            width: 90%; /* Adjust container width as needed */
            
        }

        table {
            width: 50%;
            border-collapse: collapse;
            font-size: 17px; /* Adjust font size */
            margin: 0 auto; /* Center the table horizontally */
            max-width: 1000px; /* Limit the maximum width of the table */
            box-shadow: 0 0 15px #467F21; /* Add shadow effect */
        }

    table, th, td {
        border: 1px solid #ddd;
        padding: 4px; /* Adjust padding */
        text-align: center;
    }

    th {
        background-color: #0047AB; /* Blue color */
        color: #fff;
    }

    td {
            color: #fff;
            background-color: #93c572; /* Adjusted shade of green */
        }

        /* Alternate row color */
        tr:nth-child(even) td {
            background-color: #467F21; /* Adjusted shade of green for alternate rows */
        }

     /* Media query for larger screens */
     @media screen and (min-width: 501px) {
        table {
            width: 50%; /* Set width to 50% for screens wider than 500px */
        }
    }

    /* Media query for smaller screens */
    @media screen and (max-width: 500px) {
        table {
            width: 100%; /* Set width to 100% for screens 500px or less */
        }
    }

     /* Media query for larger screens */
     @media screen and (max-width: 1200px) {
            .table-container {
                padding: 0 0px; /* Add padding to the container */
            }
        }

        /* Back-to-Top Button Styles */
#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

#back-to-top-btn:hover {
  background-color: #0056b3;
}

/* CSS for the image container */
.image-container {
  max-width: 60%; /* Set maximum width to 60% */
  margin: 0 auto; /* Center the image container horizontally */
  text-align: center; /* Center the image within the container */
}

/* CSS for the image */
.image-container img {
  height: auto; /* Allow the image to scale proportionally */
  display: inline-block; /* Display the image as an inline block */
  box-shadow: 0px 0px 10px #0056b3; /* Add shadow effect */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .image-container {
      max-width: 100%; /* Set maximum width to 100% for smaller screens */
  }
}

.toc {
    width: 250px; /* Set the width */
    height: 300px; /* Set the height */
    margin: auto; /* Center horizontally */
    padding: 10px;
    border: 1px solid #007bff;
    border-radius: 5px;
    background-color: #93c572;
    overflow-y: auto; /* Add scrollbar when content overflows */
  }
  .toc ul {
    list-style-type: none;
    padding: 0;
  }
  .toc li {
    text-align: center;
    margin-bottom: 5px;
  }
  .toc a {
    text-decoration: none;
    color: #ffffff;
  }
  .toc a:hover {
    color: #007bff;
  }
  /* Style for the download button */
  .download-container {
            text-align: center; /* Center align all text */
            margin-top: 50px; /* Add margin to create space */
        }

        .download-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #467F21;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .download-btn:hover {
            background-color: #93c572;
        }