
/* Container for the left panel and main content */
.container {
    display: flex;
}


.section {
    flex: 1; /* Allow sections to grow and fill available space */
    border: 2px solid #8f8f8f; /* Border around each section */
    padding: 20px; /* Padding inside the border */
}

h1 {
    margin-top: 0;
}

h3 {
    margin-bottom: 5px;
}

p {
    margin: 0 0 10px 0;
}

/* Styling for the main content area */
.main-content {
    display: flex; /* Align sections horizontally */
    flex-grow: 1;
    padding-left: 60px;
    padding-right: 100px;
    padding-top: 20px;
    padding-bottom: 800px;
    overflow-y: auto; /* Allow scrolling within the left panel if needed */
    gap: 20px; /* Space between the two sections */
    justify-content: space-between; /* Distribute space between sections */

}

/* Media query for mobile screens */
@media (max-width: 768px) {
    
    .main-content {
        flex-direction: column; /* Stack items vertically */
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 200px;
    }
}
