#privacy-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  box-sizing: border-box;
  display: none;
  z-index: 10001;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
#privacy-consent.show {
  display: flex;
}
#privacy-consent p {
  margin: 0 0 12px 0;
  color: #333333;
}
#privacy-consent a {
  color: #007cba;
  text-decoration: underline;
}
#privacy-consent a:hover {
  color: #005a87;
}
.consent-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.consent-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
  min-width: 80px;
}
.consent-buttons .accept-btn {
  background-color: #007cba;
  color: white;
}
.consent-buttons .accept-btn:hover {
  background-color: #005a87;
}
.consent-buttons .decline-btn {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #d0d0d0;
}
.consent-buttons .decline-btn:hover {
  background-color: #e8e8e8;
}
@media (min-width: 768px) {
  #privacy-consent {
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
  }
  #privacy-consent p {
    margin: 0;
    flex: 1;
    margin-right: 20px;
  }
  .consent-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}


