@charset "utf-8";
/* CSS Document */

/* 2. Remove default top margin on top header bar */
.top-bar, 
header, 
#header {
  margin-top: 0 !important;
  padding-top: 0;
}

/* Top Bar Styling */
.top-bar {
  width: 100%;
  background-color: #333; /* Change to match your theme */
  color: #fff;
  padding: 4px 0;
  font-family: inherit; /* Forces the bar to use your page's current font */
  font-size: 16px;

}

.top-bar-container {
  max-width: 1200px; /* Match your website's content width */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.top-bar-left a, 
.top-bar-right a {
  color: #fff;
  text-decoration: none;
  font-family: inherit; 
  transition: opacity 0.2s ease;
}

.top-bar-left a:hover, 
.top-bar-right a:hover {
  opacity: 0.8; /* Subtle change on hover */
}

/* Responsive adjustment for small screens */
@media (max-width: 480px) {
  .top-bar-container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
