.xnpe_async_hide {
  opacity: 0 !important;
}

/* Root Variables for Colors */
:root {
  --primary-color: #000000;
  --secondary-color: #ffd500; /* Bloomreach Yellow */
  --text-color: #000000;
  --background-color: #ffffff;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header */
.header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.8rem;
}

/* Content Section */
.content {
  text-align: center;
  padding: 50px 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--text-color);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
  transform: translateY(100%); /* Hidden by default */
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}

.cookie-banner.show {
  transform: translateY(0); /* Slide into view */
}

.cookie-banner span {
  flex: 1; /* Ensure the text takes up available space */
  margin-right: 10px; /* Spacing between text and buttons */
  box-sizing: border-box;
}

.cookie-banner div {
  display: flex; /* Align buttons horizontally */
  gap: 10px; /* Add spacing between buttons */
}

button {
  font-size: 1rem;
  padding: 10px 20px;
  margin: 0; /* Removed margin to avoid extra spacing */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cookie-accept:hover {
  background-color: var(--button-hover-bg);
}

.cookie-decline {
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--primary-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cookie-decline:hover {
  background-color: var(--button-hover-bg);
  color: white;
  border-color: var(--button-hover-border);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .content {
    padding: 30px 10px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner span {
    padding-bottom: 10px;
  }
}
