#alotoday-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid #0073aa;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 16px;
  text-align: center;
  z-index: 9999;
  display: none;
  font-family: 'Inter', sans-serif;
}

#alotoday-consent-banner .consent-text {
  color: #333;
  margin-bottom: 10px;
  font-size: 15px;
}

.consent-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.consent-btn {
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 600;
}

.consent-btn.accept {
  background: #0073aa;
  color: #fff;
}

.consent-btn.reject {
  background: #ccc;
  color: #222;
}

@media (max-width: 480px) {
  #alotoday-consent-banner {
    font-size: 14px;
    padding: 14px;
  }
}
