/* Active page indicators with yellow-orange borders */
.nav-link {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    transition: all 0.2s;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid transparent;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.nav-link.active {
    opacity: 1;
    color: #FFD700;
    border: 2px solid #FFD700;
    background-color: rgba(255, 215, 0, 0.15);
}

/* For Dzo_NLP frontend specific styles */
.nav-links a.nav-link {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
    border: 2px solid transparent;
}

.nav-links a.nav-link:hover {
    color: #38bdf8;
    border-color: rgba(255, 215, 0, 0.3);
}

.nav-links a.nav-link.active {
    color: #FFD700;
    border: 2px solid #FFD700;
    background-color: rgba(255, 215, 0, 0.15);
}

/* For main translator pages */
.navbar nav a.nav-link {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    transition: all 0.2s;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    border: 2px solid transparent;
}

.navbar nav a.nav-link:hover {
    opacity: 0.8;
    border-color: rgba(255, 215, 0, 0.3);
}

.navbar nav a.nav-link.active {
    opacity: 1;
    color: #FFD700;
    border: 2px solid #FFD700;
    background-color: rgba(255, 215, 0, 0.15);
}
