#cookie-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  max-width: 320px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
}

.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: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-content button:hover {
  background-color: #45a049;
}

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