#left-sidebar .widget, #right-sidebar .widget, #tag-cloud-sidebar .widget {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding doesn't add to width */
}

#tag-cloud-sidebar .widget {
    margin-top: 20px;
}

#left-sidebar .widget ul, #right-sidebar .widget ul {
    list-style: none;
    padding: 0;
}

#left-sidebar .widget ul li, #right-sidebar .widget ul li {
    margin-bottom: 10px;
}

#left-sidebar .widget ul li a, #right-sidebar .widget ul li a {
    color: var(--text-dark);
}

#left-sidebar .widget ul li a:hover, #right-sidebar .widget ul li a:hover {
    color: var(--secondary-yellow);
}

#tag-cloud-sidebar .tagcloud a {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    background-color: var(--primary-green);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 3px;
}

#tag-cloud-sidebar .tagcloud a:hover {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    #left-sidebar .widget, #right-sidebar .widget, #tag-cloud-sidebar .widget {
        margin-bottom: 10px;
        padding: 10px;
        width: 100%; /* Full width on mobile */
    }
    #tag-cloud-sidebar .widget {
        margin-top: 10px;
    }
}