#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; 
  background: rgba(5, 5, 5, 0.9);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999; /* Ensure it's above ShareThis */
  display: none; /* Hide by default */
}

#cookie-banner button {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

#cookie-banner button#accept-cookies {
  background: #7FBE54;
  color: white;
  transition: background-color 0.3s ease; 
  border-radius: 3px;
  font-weight: bold;
  display:inline !important;
  width: 100px !important;
}

#cookie-banner button#accept-cookies:hover {
  background: #6CA64A; 
}

#cookie-banner button#reject-cookies {
  background: #430101;
  color: white;
  transition: background-color 0.3s ease; 
  border-radius: 3px;
  font-weight: bold;
  display:inline !important;
  width: 100px !important;  
}

#cookie-banner button#reject-cookies:hover {
  background: #7d1515; 
}
.st-sticky-share-buttons {
    z-index: 100 !important; /* Reduce z-index so it doesn't overlap the cookie banner */
}