body {
    background-color: #151e22;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Remove scrolling */
}

.navbar {
    width: 100%;
    background-color: #2A3B4C;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-sizing: border-box; /* Ensure padding is included in the height calculation */
}

.nav-logo {
    height: 30px;
    margin-right: 20px; /* Add some space between the logo and the dashboard link */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.login-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #7289da;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* Remove or adjust margin-left to move the login button to the left */
}

.login-btn:hover {
    background-color: #5a6fb2;
}

#login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #fff;
    padding-top: 60px; /* Adjust for navbar height */
}