.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  z-index: 10000;
  padding: 20px 0;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
  max-width: 800px;
}

.cookie-banner button {
  margin-top: 10px;
}

#acceptCookieBtn {
  width: 250px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

#acceptCookieBtn:hover {
  background-color: #0056b3;
}

/* Responsive styles */
@media (max-width: 768px) {
  .cookie-banner-content {
    padding: 0 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-banner p {
    font-size: 12px;
    max-width: 100%;
  }
  
  .cookie-banner button {
    width: 100%;
    max-width: 200px;
  }
}