#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 15px;
  display: none;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#cookie-banner p {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.4;
}

#cookie-banner a {
  color: #4dabf7;
  text-decoration: underline;
}

#cookie-banner .buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

#cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

#cookie-banner .accept {
  background-color: #28a745;
  color: #fff;
}

#cookie-banner .accept:hover {
  background-color: #218838;
}

#cookie-banner .reject {
  background-color: #dc3545;
  color: #fff;
}

#cookie-banner .reject:hover {
  background-color: #c82333;
}

#cookie-banner .close {
  background-color: #6c757d;
  color: #fff;
}

#cookie-banner .close:hover {
  background-color: #5a6268;
}

@media (max-width: 768px) {
  #cookie-banner {
    padding: 10px;
  }
  
  #cookie-banner .buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  #cookie-banner button {
    width: 100%;
    padding: 10px 16px;
  }
}