.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  font-size: 14px;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  z-index: 9999
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cookie-header a {
  text-decoration: none;
  color: black; 
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: bolder;
}

.cookie-header a:hover {
  color: #007bff; 
}

.cookie-header a.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
  padding-bottom: 5px;
}

.cookie-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.cookie-content p {
  color: #555;
  margin-top: 5px;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.cookie-buttons button {
  border: none;
  background: rgb(255, 255, 255); 
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid #007bff;
  cursor: pointer;
  font-size: 14px;
  flex: 1;
  margin: 0 5px;
  transition: background 0.3s ease;
}

.cookie-buttons button:hover {
  background: #007bff;
}
