.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background-color: #1e1e1e;
  color: white;
  border-radius: 10px;
  padding: 20px;
  width: 350px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  font-family: sans-serif;
  display: none;
}

.cookie-box a {
  color: #9ecbff;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  flex: 1;
  padding: 10px;
  background-color: #61aaff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-buttons button:hover {
  background-color: #4894e3;
}

.customize {
  margin-top: 10px;
  background: none;
  border: 1px solid #9ecbff;
  padding: 10px;
  color: #9ecbff;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-icon {
  font-size: 30px;
  margin-bottom: 10px;
}