@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&display=swap');

.mynavbar {
    background-color: #0f172a; /* Midnight Slate - Deep Tech Color */
    border-bottom: 1px solid #1e293b; /* Subtle border blending in */
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    font-family: 'JetBrains Mono', monospace;
}

.navbar-toggler {
    margin-right: 7px;
    border: 2px solid #0891b2; /* distinct border */
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    letter-spacing: -1px;
}

.navbar-brand:hover {
    outline: none;
    color: #0891b2 !important; /* Tech Blue Hover */
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.2s ease;
    font-size: 0.9rem; /* Compact tech look */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    outline: none;
    color: #0891b2 !important; /* Tech Blue Hover */
    transform: translateY(-1px);
}

.mynavbar-dark {
    background-color: #0F172A;
    border-bottom: 2px solid #0891b2;
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

#icon-dark {
    display: none;
}

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: 4px;
}

.theme-toggle:hover {
    border-color: #0891b2;
    background-color: rgba(8, 145, 178, 0.1);
}

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

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