/* CSS for database.css */
body {
    font-family: Arial, sans-serif;
    background-image:url("background2.jpg");
}

header {
    color: #fff;
    text-align: center;
    padding: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #333;
    color: #fff;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

footer {
    background-color: #333;
    text-align: center;
    padding: 10px;
}

#homeButton {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

footer .c {
    width:200%;
}
nav {
    background-color: #333;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

/* Make the navigation bar horizontal */
nav {
    display: flex;
    justify-content: space-between;
} 

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    overflow: hidden;
    z-index: 1000; /* Ensure it's above other elements */
}

/* Add some padding to the body so content is not hidden behind the fixed navbar */
body {
    padding-top: 40px; /* Adjust as needed based on your navbar height */
}