#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

#cookie-consent p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.5;
}

#cookie-consent a {
  color: #93c5fd;
  text-decoration: none;
}

#cookie-consent a:hover {
  text-decoration: underline;
}

#cookie-consent button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 1.5rem;
}

#cookie-consent button:hover {
  background: #2563eb;
}

@media (max-width: 768px) {
  #cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  #cookie-consent button {
    margin-left: 0;
    align-self: flex-start;
  }
}
