/* General body styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Audiowide', sans-serif;
    background-color: #000000;  /* Light background */
    color: #ffffff;
    text-align: center;
}

/* Navbar styling */
nav {
    background-color: #333;  /* Dark background for the navbar */
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    padding-left: 20px;
}

#navbar-logo {
    width: 140px; /* Adjust the logo size */
    height: auto;
}

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

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #575757;  /* Darker background on hover */
}


/* Home page content */
h1 {
    margin-top: 100px;  /* Adds space below the fixed navbar */
    font-size: 36px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Apply form styling */
.apply-form-container {
    margin-top: 120px;
    padding: 130px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #000000;
    color:#898989;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 24px;
    color: #888888;
    font-family: 'Audiowide', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #9f9f9f;
}
/* Footer Styling */
footer {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    background-color: #000000; /* Dark background for the footer */
    color: var(--text-color); /* White text color */
    text-align: center; /* Center-align the text */
    padding: 20px 0; /* Add padding around the footer */
    font-size: 14px; /* Set font size */
}

footer p {
    text-align: center;
    margin: 0; /* Remove margin */
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 15px 10px;
        font-size: 12px;
    }
}
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #218838;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    /* Navbar */
    nav ul {
        flex-direction: column;
        display: none;  /* Hide the menu by default */
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 50px;
        width: 100%;
        left: 0;
        padding: 0;
        z-index: 1000;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Show the menu when toggled */
    nav ul.active {
        display: flex;
    }

    /* Hamburger button styling */
    .hamburger {
        display: block;
        cursor: pointer;
        padding: 10px;
        margin-right: 20px;
    }

    .hamburger div {
        background-color: white;
        width: 30px;
        height: 4px;
        margin: 6px 0;
        transition: 0.4s;
    }

    /* Username display */
    #username-display {
        margin-left: 0;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 28px;
    }

    #logout {
        margin-left: 0;
        margin-top: 10px;
    }

    #navbar-logo {
        width: 100px; /* Adjust the logo size */
        height: auto;
    }
}
