#cookie-modal {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #505050;
  border: 1px solid #c9c9c9;
  padding: 20px;
  max-width: 640px;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  border-radius: 5px;
  opacity: 0.8;
  z-index: 1000;
}
#cookie-modal:hover {
  opacity: 1;
}

.cookie-content h3 {
  margin-top: 0;
  font-size: 1.2em;
}

.cookie-content label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-content button {
  background-color: #009fe2;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-content button:hover {
  background-color: #009fe2;
}

.cookie-content input[type="checkbox"] {
  margin-right: 10px;
}