.bg-header-top {
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #e6e6e6;
    padding: 0 15px;
}

.nav-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.nav-links a {
    color: #676464;
    text-decoration: underline !important;
    font-size: 14px;
}

/* Responsive styles for mobile devices */
@media screen and (max-width: 768px) {
    .bg-header-top {
        height: auto;
        padding: 10px 15px;
    }
    
    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 12px;
    }
}