body {
    font-family: 'Arial', sans-serif;
    background-color: #f6f6f6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.widget-section {
    margin-bottom: 20px; /* Spacing between sections */
}

.widget-section h2 {
    margin-top: 0;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    font-size: 1.5em;
}

/* Styles for tablets and up */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* Styles for desktop and up */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
.widget-content {
    display: none;  /* By default, widget content is hidden */
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.widget-section.active .widget-content {
    display: block;
    opacity: 1;
    max-height: 1000px;  /* Assuming a max height. Adjust accordingly. */
}
