.cookies-eu-banner {
  background: #f5f5f5; /* Light grey background */
  color: #333; /* Dark grey text */
  padding: 16px; /* Uniform padding */
  font-size: 16px; /* Readable font size */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Modern font family */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; /* Stretches the banner across the whole bottom */
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  border-top: 1px solid #ddd; /* Top border for definition */
  z-index: 1000; /* High z-index to ensure it's above other elements */
  display: flex; /* Use flexbox to arrange child elements */
  justify-content: space-between; /* Space between text and button */
  align-items: center; /* Vertically center align items */
}

.banner-text {
  flex-grow: 1; /* Allows the text container to grow and fill available space */
  text-align: center; /* Centers the text within the container */
}

.cookies-eu-banner button {
  background: #0084ff; /* Bright blue background for the button */
  color: #fff; /* White text for the button */
  border: none; /* No border for a cleaner look */
  cursor: pointer;
  padding: 10px 20px; /* Larger padding for a bigger click area */
  font-size: 14px; /* Standard font size for buttons */
  font-weight: bold;
  border-radius: 5px; /* Rounded corners for the button */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
}

.cookies-eu-banner button:hover {
  background: #0056b3; /* Darker blue on hover */
  transform: scale(1.05); /* Slight increase in size on hover */
}

.cookies-eu-hidden {
  display: none;
}
