/* Add custom CSS to make widget-content full width */

/* Apply these styles to the widget area container */
.widget-area {
    width: 100%; /* Make the widget area full width */
    max-width: none; /* Remove any maximum width */
    margin-left: auto; /* Center align the widget area (optional) */
    margin-right: auto; /* Center align the widget area (optional) */
}


.widget-area {
    grid-template-columns: repeat(1, 1fr);
}