/* styles.css */

/* Basic styling for navigation */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f0f0f0; /* Light gray background */
}
nav {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
}
nav a:hover {
    background-color: #555;
}
main {
    flex: 1;
    overflow-y: auto;
    background-color: #fff; /* White background */
    padding: 20px;
    border-top: 1px solid #ccc; /* Light gray border */
    border-bottom: 1px solid #ccc; /* Light gray border */
}
section {
    display: none;
}
section.active {
    display: block;
    margin-top: 20px; /* Space between sections */
    padding: 20px;
    background-color: #fff; /* Lighter gray background */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow */
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px; /* Space between content and footer */
}
iframe {
    width: 100%;
    height: calc(100vh - 150px); /* Adjust the height according to nav and footer */
    border: none;
}
