body {
    font-family: 'Arial', sans-serif;
    padding-top: 0; /* Remove padding on top of the page */
}


.logo {
    padding-top: 40px;
}

.container {
    display: flex; 
}

.sidebar {
    background: #f4f4f4;
    width: 200px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    height: 100vh; /* Set sidebar height to full viewport height */
    padding-left: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}


.sidebar ul li {
    padding: 10px 0;
    cursor: pointer;
}

.sidebar ul li:hover {
    background: #eee;
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    background: rgb(255, 255, 255); /* Set background color of main content to blue */
}

.input-container {
    display: flex;
}

.input-container > div {
    flex: 1;
    padding: 10px;
}

.main-content h1 {
    color: #242424;
    font-size: 24px;
}

.main-content h3 {
    color: #333;
    font-size: 18px;
}

.button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit color from parent element */
}


textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    margin-top: 5px;
    font-size: 14px;
}

button {
    background-color: #2196F3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

button:hover {
    background-color: #1976D2;
}

.output, .python-code {
    margin-top: 20px;
}