.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.cookie-content a {
  color: #4CAF50;
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept {
  background: #4CAF50;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.btn-reject {
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.cookie-banner button:hover {
  opacity: 0.9;
}