/* Navigation Stylesheet */
html {
    background-color: #000000 !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000000 !important;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.btn-login {
    background: #ffffff;
    color: #000000 !important;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    height: 40px;
    width: 110px;
    box-sizing: border-box;
}

.btn-login:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
    opacity: 1 !important;
}
