.cookie-popup {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  z-index: 1000;
  display: none; /* Hide the popup initially */
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #1a73e8;
  text-decoration: underline;
}

.cookie-accept {
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: 20px;
}

.cookie-accept:hover {
  background-color: #155dc1;
}
