/* Fixed top bar - shared across all pages */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  border-bottom: 2px solid var(--accent-color);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
}

.top-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

/* Desktop: horizontal layout */
@media (min-width: 768px) {
  .top-bar {
    padding: 16px 24px;
  }
  
  .top-bar-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.app-title-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.app-title-link:hover {
  opacity: 0.7;
}

.app-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000; /* Text always stays black */
  margin: 0;
  letter-spacing: 0.5px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .app-title {
    font-size: 32px;
  }
}

