/* styles.css */

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.container {
   display: flex;
	height: 100%;
	width: 100%;
	}

.left-column {
    width: 200px; /* Set the width to 380 pixels */
    max-width: 200px; /* Optionally set a maximum width to ensure it doesn't exceed 380 pixels */
    background-color: #e0e0e0; /* Left column background color */
    padding: 1px; /* Add padding as needed */
}

.right-column {
    flex: 1; /* The right column takes the remaining space */
    background-color: #f0f0f0; /* Right column background color */
    padding: 10px; /* Add padding as needed */
}