/* Top bar styling */
.auto-topbar{
  width:100%;
  background:#d00000; /* red */
  color:#ffffff;      /* white */
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 20px;
  box-sizing:border-box;
  z-index:999;
  position:relative;
  font-size:16px;
}

/* Left: date/time in sans-serif */
.auto-date{
  font-family: sans-serif;
  white-space: nowrap;
}

/* Right: navigation menu in Raleway */
.auto-menu{
  font-family: 'Raleway', sans-serif;
  font-weight:600;
}
.auto-menu-ul{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}
.auto-menu-ul li{ display:inline-flex; }
.auto-menu-ul a{
  color:#ffffff;
  text-decoration:none;
}
.auto-menu-ul a:hover{ text-decoration:underline; }

@media (max-width:640px){
  .auto-topbar{ padding:8px 14px; }
  .auto-menu-ul{ gap:14px; }
  .auto-date{ font-size:14px; }
}
