﻿#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9f9f9;
  padding: 20px 30px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-family: sans-serif;
  font-size: 14px;
}

#cookie-consent-banner p {
  margin: 0;
  padding-right: 20px;
  flex: 1 1 60%;
  color: #333;
}

#cookie-consent-banner button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

#accept-essential {
  background: #e0e0e0;
  color: #333;
}

#accept-essential:hover {
  background: #d5d5d5;
}

#accept-all {
  background: #181818;
  color: white;
}

#accept-all:hover {
  background: #181818;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-consent-banner p {
    margin-bottom: 10px;
    flex: 1 1 100%;
  }

  #cookie-consent-banner button {
    margin: 5px 0 0 0;
  }
}