/* voting/static/css/topbar.css */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.6); /* semi-transparent white */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.topbar-button {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.topbar-button:hover {
  color: #007bff;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  object-fit: fill;
}

/* Add padding-top globally so content is pushed below the fixed topbar */
body {
  padding-top: 80px;
  margin: 0;
}
