<style>
/* Sidebar Styling */
#sidebar-left {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    #sidebar-left {
        max-width: 100%;
        padding: 15px;
    }
}

/* Widget Styling */
.widget {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.widget-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sidebar List */
.tm-all-post-list {
    list-style: none;
    padding: 0;
}

.tm-all-post-list li {
    margin-bottom: 5px;
}

.tm-all-post-list li a {
    text-decoration: none;
    color: #1f3b75;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-size: 16px;
}

.tm-all-post-list li a:hover,
.tm-post-active a {
    background: #1f3b75;
    color: #ffffff;
    font-weight: bold;
}

/* File Download Section */
.tm-links {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #f9f9f9;
    transition: 0.3s;
}

.tm-links:hover {
    background: #1f3b75;
    color: #fff;
    cursor: pointer;
}

.tm-fileicon {
    font-size: 26px;
    margin-right: 12px;
    color: #dc3545;
}

.tm-fielcontent h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
    font-weight: bold;
}

.tm-downloadlink {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #1f3b75;
    font-weight: bold;
}

.tm-downloadlink:hover {
    text-decoration: underline;
}

/* Sidebar Image */
.widget_media_image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.widget_media_image img:hover {
    transform: scale(1.05);
}

/* Content Area Styling */
.content-area {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.content-area h1, .content-area h2 {
    color: #1f3b75;
    font-weight: bold;
}

.content-area p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Bullet List Styling */
ul.custom-list {
    list-style-type: none;
    padding-left: 20px;
}

ul.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

</style>