@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700&display=swap');

.mynavbar {
    background-color: #0f1117;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: white;
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    font-family: 'Sora', sans-serif;
}

.navbar-toggler {
    margin-right: 7px;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Sora', sans-serif;
}

.navbar-brand:hover {
    outline: none;
    opacity: 0.8;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.2s ease;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-link:hover {
    outline: none;
    color: rgba(255, 255, 255, 1) !important;
}

.mynavbar-dark {
    background-color: #0f1117;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: white;
    font-family: 'Sora', sans-serif;
}

a {
    text-decoration: none;
}

a:hover {
    outline: none;
}

.a-light {
    color: white;
}

.a-dark {
    color: white;
}

.navbar-brand {
    margin-left: 30px;
    font-weight: 700;
}

/* Theme toggle button styling */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 6px;
}

.theme-toggle:hover {
    border-color: rgba(255,255,255,0.15);
    background-color: rgba(255,255,255,0.05);
}

.theme-toggle i {
    font-size: 1rem;
    color: white;
}

@media (max-width: 767px) {
    .navbar-brand {
        margin-left: 10px;
    }
}
