
.leftcontainer {
    width: 20%;
    height: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
    box-sizing: border-box; /* Ensures padding is included in the element's total width and height */
}

.blogcontainer_main, .blogcontainer {
    background-color: white;
    width: 50%; /* Initial width */
    height: 90vh;  /* viewport height */
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 50px; /* Keep padding inside the box */
    margin-top: 0px;
    box-sizing: border-box; /* Includes padding in total width */
    position: relative; /* Needed for the resize handle */
    border: 1px solid #ccc; /* Example border */
    border-radius: 3px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.transcript {
    font-size: 14px;
    font-family:'Times New Roman', Times, serif;
}

.date_field {
    margin-top: 0px;
    font-size: 1.2em;
}

.name_field {

}

hr {
    margin-bottom: 20px;
}


.blog_menu {
    color: #009ccb;
    background-color: white;
    width: 50%; /* Initial width */
    float: left;
    display: flex;
    align-items: center; /* Vertically aligns the items in the middle */
    justify-content: space-between; /* Adjust this to control spacing */
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 50px; /* Keep padding inside the box */
    margin-top: 10px;
    box-sizing: border-box; /* Includes padding in total width */
    position: relative; /* Needed for the resize handle */
    border: 1px solid #ccc; /* Example border */
    border-bottom: 0px;
    border-radius: 3px;
}


.blog_heading{
    font-size: 28px;
    margin: 0; /* Remove default margins if needed */
}

.blog_subhead {
    margin-top: 15px;
    margin-bottom: -10px;
    font-size: 16px;
    font-weight:bold;
}

.past_entries_list {
    color: #009ccb;
    font-family: 'Raleway';
    width: 150px;
    font-size: 14px;
    margin: 0; /* Remove default margins if needed */
}

.blog_heading {
    color: #009ccb;
}

.blog_heading, .blog_question, .blog_answer {
    margin: 10px 0; /* Vertical spacing, adjust as needed */
}

.blog_answer p {
    text-align: justify; /* Optional: Justifies the text for better readability */
}

.blog_content_image {
    width: 300px;
    height: 175px;
    border: 1px solid black;
}

@media (max-width: 768px) {
    .leftcontainer {
        display:none;
    }

    .blog_menu {
        width: 95%;
        margin-left: 10px;
        flex-direction: column; /* Stacks flex children vertically */
        align-items: flex-start; /* Aligns items to the start of the cross-axis */
    }

    .blog_heading {
        width: 100%; /* Makes each child take the full width of the parent */
        margin-bottom: 10px; /* Adds some space between the elements */
    }

    .past_entries_list {
        font-size: 1.1em;
        color: black;
        width: 100%; /* Makes each child take the full width of the parent */
        margin-top: 5px;
        margin-bottom: 5px; /* Adds some space between the elements */
    }

    .blogcontainer {
        background-color: white;
        width: 95%; /* Initial width */
        height: 85vh; /* Full viewport height */
        padding: 20px;
        margin-top: 0px;
        margin-left: 10px;
        margin-right: 5px;
        margin-bottom: 50px;
        border-radius: 3px;
    }

    .blogcontainer_main {
        background-color: white;
        width: 95%; /* Initial width */
        height: 70vh; /* Full viewport height */
        padding: 20px;
        margin-top: 0px;
        margin-left: 10px;
        margin-right: 5px;
        margin-bottom: 50px;
        border-radius: 3px;
    }

    .blog_content_image {
        width: 300px;
        height: 175px;
        border: 1px solid black;
    }

}