#privacy-consent {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 69%;
  max-width: 800px;
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 12px 16px;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: center;
  z-index: 10001;
  border-radius: 8px 8px 0 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
#privacy-consent.show {
  display: flex;
}
#privacy-consent p {
  margin: 0 0 10px 0;
  text-align: center;
}
#privacy-consent a {
  color: #4fc3f7;
  text-decoration: underline;
}
#privacy-consent a:hover {
  color: #29b6f6;
}
#privacy-consent .cookie-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
#privacy-consent button {
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  transition: background-color 0.3s;
}
#privacy-consent button:hover {
  background-color: #45a049;
}
#privacy-consent button.decline {
  background-color: #757575;
}
#privacy-consent button.decline:hover {
  background-color: #616161;
}
@media (max-width: 768px) {
  #privacy-consent {
    width: 95%;
    padding: 10px 12px;
    font-size: 13px;
  }
  #privacy-consent .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  #privacy-consent button {
    width: 100%;
    padding: 10px;
  }
}
@media (min-width: 769px) {
  #privacy-consent {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #privacy-consent p {
    margin: 0;
    text-align: left;
    flex: 1;
  }
  #privacy-consent .cookie-buttons {
    margin-top: 0;
    margin-left: 16px;
  }
}