/* General Styling */
body {
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
<<<<<<< HEAD
    background-color: #333; /* Dark Grey */
=======
    background-color: #333;
>>>>>>> 367ce31 (Recreated app.py and plot.png chart)
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo {
    height: 80px; /* Adjust as needed */
}

/* Navigation Links */

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #aaa; /* Light Grey */
}

/* Prevent content from being hidden behind the fixed nav bar */
main {
    padding-top: 80px;
}
/* General Styling */
body {
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333; /* Dark Grey */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo {
    height: 80px;
}

/* Navigation Links */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #aaa; /* Light Grey */
}

/* Prevent content from being hidden behind the fixed nav bar */
main {
    padding-top: 80px;
}
