/* static/style.css */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

header,
footer {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 10px;
}

#consent-banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}

#consent-banner button {
  padding: 4px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #666;
  color: white;
}

#consent-banner button.active {
  background: #4CAF50;
}

#consent-banner button:hover {
  opacity: 0.9;
}