body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    display: flex; /* Uses flexbox for side-by-side layout */
    min-height: 100vh; /* Ensures the container fills the screen height */
}

.menu-container {
    width: 165px; /* 200 Sets a fixed width for the menu */
    background-color: #333;
    color: white;
    padding: 20px 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.menu-container ul {
    list-style-type: none; /* Removes default bullet points */
    padding: 0;
    margin: 0;
}

.menu-container li a {
    display: block; /* Makes links fill the entire list item area */
    color: white;
    text-decoration: none; /* Removes default underlines */
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.menu-container li a:hover {
    background-color: white; color: black; /* Hover effect #575757 */
}

.menu-container li a.selected {
    background-color: white; color: black; /* Selected effect #ffff66 #ff1919 */
}

.content-container {
    flex-grow: 1; /* Allows the content to fill the remaining space */
    padding: 20px;
    background-color: #fff;
    background-image: url(lightppr.gif);
	font-family: "Times New Roman";
	font-size:1.2em;
}

h1 {
    color: #333;
}