body {
    font-family: 'Raleway', system-ui, sans-serif;
}
.sidebar {
    transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .sidebar.hidden-mobile {
        transform: translateX(-100%);
    }
}
.widget-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
}
.widget-content.collapsed {
    max-height: 0 !important;
    opacity: 0;
}