#privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background-color: #f8f9fa;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 10000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

#privacy-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

#privacy-popup .close-btn:hover {
  background-color: #e9ecef;
  color: #333;
}

#privacy-popup p {
  margin: 0 0 15px 0;
  padding-right: 25px;
}
#privacy-popup a {
  color: #007bff;
  text-decoration: underline;
}
#privacy-popup a:hover {
  color: #0056b3;
}
#privacy-popup .btn-container {
  display: flex;
  gap: 10px;
}
#privacy-popup button {
  flex: 1;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}
#privacy-popup .accept-btn {
  background-color: #28a745;
  color: white;
}
#privacy-popup .accept-btn:hover {
  background-color: #218838;
}
#privacy-popup .decline-btn {
  background-color: #6c757d;
  color: white;
}
#privacy-popup .decline-btn:hover {
  background-color: #5a6268;
}
@media (max-width: 480px) {
  #privacy-popup {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }
}