
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure the navbar stays on top of other content */
}

.navbar-brand {
    font-size: 24px;
    color: #ecf0f1;
    font-weight: bold;
}

.navbar-menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin-left: 20px;
}

.navbar-menu li a {
    text-decoration: none;
    color: #ecf0f1;
    padding: 10px 15px;
    border-radius: 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
    background-color: #1abc9c;
    color: #ffffff;
}

.navbar-menu li a.active {
    background-color: #e74c3c;
    color: white;
}

/* Main Content Styles */
.content {
    margin-top: 60px; /* Adjust this if the navbar height changes */
    padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-menu {
        flex-direction: column;
        align-items: center;
        background-color: #34495e;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust if the navbar height changes */
        left: 0;
        display: none;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .navbar-menu li a {
        width: 100%;
    }
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Header Styling */
h1, h2, h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Form Styling */
form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Elements */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    width: calc(100% - 22px); /* Account for padding and borders */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 20px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

/* Download Link Styling */
a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    input[type="text"],
    input[type="password"],
    input[type="email"],
    select {
        width: calc(100% - 16px); /* Adjust for smaller screens */
    }
}
nav ul li a.logout {
    color: red; /* Example: Make the logout link red */
    font-weight: bold;
}


