/**
 * Adelstein Consent — Content Blocker Styles
 *
 * Placeholder-Darstellung fuer geblockte iframes/Embeds.
 *
 * @package Adelstein_Consent
 */

.adelstein-consent-blocked {
  position: relative;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adelstein-consent-blocked iframe {
  display: none;
}

.adelstein-consent-placeholder {
  text-align: center;
  padding: 2rem;
  max-width: 400px;
}

.adelstein-consent-placeholder__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.adelstein-consent-placeholder__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.adelstein-consent-placeholder__text {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.adelstein-consent-unblock-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.adelstein-consent-unblock-btn:hover {
  background: #333;
}

.adelstein-consent-unblocked .adelstein-consent-placeholder {
  display: none;
}

.adelstein-consent-unblocked iframe {
  display: block;
}
