#cookie-consent-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background-color: #f9f9f9;
  color: #333;
  padding: 15px 20px 15px 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  z-index: 10000;
}
#cookie-consent-modal a {
  color: #1a73e8;
  text-decoration: none;
}
#cookie-consent-modal a:hover {
  text-decoration: underline;
}
#cookie-consent-modal .close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 0;
}
@media (max-width: 480px) {
  #cookie-consent-modal {
    max-width: 90vw;
    bottom: 15px;
    right: 15px;
    font-size: 13px;
    padding: 12px 18px 12px 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  #cookie-consent-modal {
    max-width: 280px;
    font-size: 14px;
  }
}