/* style.css */
#consent-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f8f8f8;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 9999; /* Poskrbite, da je popup vedno na vrhu */
}

#consent-popup h2 {
  margin-bottom: 15px;
  font-size: 1.3em;
}

#consent-popup p {
  color: #555;
  line-height: 1.5;
}

.cookie-category {
  margin-bottom: 10px;
}

.button-container {
  margin-top: 20px;
}

.button-container button {
  padding: 10px 15px;
  background-color: #007bff; 
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 10px;
}

.button-container button:hover {
  background-color: #0056b3; 
}
