  .left-bar {
        position: relative;
        background-color: #ffffff;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }


    .left-bar ul {
        list-style-type: none;
        padding: 0;
    }

    .left-bar ul li a {
        color: #558b61;
        text-decoration: none;
        padding: 8px 0;
        display: block;
    }

    .left-bar ul li a:hover {
        text-decoration: underline;
    }

    h2 {
        color: #558b61;
        margin-top: 20px;
    }

    .content-section {
        margin-bottom: 40px;
    }
           .back-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #558b61;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
        }

        .back-to-top:hover {
            background-color: #0056b3;
        }
    .youtube-img {
        background: #f8f8f9;
        max-width: 100%;
        border-radius: 10px;
        display: block;
    }
    .covid-links {
     
    }

.covid-links li {
    margin-bottom: 10px; /* Space between list items */
}

.covid-links a {
    text-decoration: none; /* Remove underline from links */
    
    position: relative; /* Position relative for the pseudo-element */
    display: inline-block; /* Ensure space for the arrow */
    padding-right: 1.6em; /* Space for the arrow */
}

.covid-links a::after {
    content: '\2192'; /* Right arrow symbol */
    font-size: 1.6em; /* Adjust size of the arrow */
   color: #558b61;
    position: absolute;
    right: 0; /* Position at the end of the link */
    top: 50%; /* Vertically center the arrow */
    transform: translateY(-50%); /* Adjust vertical alignment */
    transition: color 0.3s; /* Smooth transition on hover */
}

.covid-links a:hover::after {
    color: #0056b3; /* Darker color on hover */
}
.anchor {
    padding-top: 120px; /* Adjust this value based on the height of your sticky navigation bar */
    margin-top: -120px; /* This offset value ensures that the section is still aligned with the anchor link */
    position: relative; /* Ensures the padding and margin adjustments are applied properly */
}
@media (min-width: 768px) {
    .back-to-top {
        position: fixed; /* Adjust this to keep it within the left bar */
        bottom: 20px;
        left: calc(5% + 10px); /* Adjust for padding */
    }