/* Set height and remove default margin and padding for HTML and body */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Set display to flex with column direction for body */
body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: #AF8F6F;
}

/* Styling for the navigation bar */
.navbar {
    display: flex;
    justify-content: space-around; /* Distribute space evenly between items */
    align-items: center; /* Center items vertically */
    background-color: #333;
    padding: 10px 0;
}

/* Styling for navigation links */
.navbar p {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    cursor: pointer; /* Add cursor pointer for better UX */
    margin: 0; /* Remove default margin */
}

/* Hover effect for navigation links */
.navbar p:hover {
    background-color: #ddd;
    color: black;
}

/* Styling for the view container */
#view {
    flex: 1;
    padding: 20px;
}

/* Styling for the footer content */
.footer-content {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
}

/* Styling for links in the footer */
.footer-content a {
    color: #f4a261;
    text-decoration: none;
}

/* Hover effect for links in the footer */
.footer-content a:hover {
    text-decoration: underline;
}
