/* Basic styling for the page layout */

body {
    display: flex;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333;
}

/* Styling for the left menu */
.sidebar {
    width: 150px;
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    height: 100vh;
    position: fixed;
}

/* Style for links in the sidebar */
.sidebar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin-top: 10px;
    }
.sidebar a:hover{
	color: red;
	cursor: pointer;
}

/* Styling for the main content */
.main-content {
    background-color: #333;
    color: white;
    margin-left: 180px; /* Adjusted for sidebar width */
    padding: 20px;
    flex-grow: 1;
}

/* Make image responsive */
.responsive-image {
    width: 100%;
    height: auto;
    max-width: 100vw;
}
