/**
 * Cookie Consent App - CSS
 * Minimal styles - uses theme classes for buttons and layout
 * Only adds app-specific positioning and structure
 */

/* Banner container - only positioning */
.cookie-consent-app-banner {
  position: fixed;
  z-index: 9999;
  width: 100%;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--bg-primary, #fff);
  border-top: 1px solid var(--border-color, #e0e0e0);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Position variants */
.cookie-consent-app-banner-bottom {
  bottom: 0;
}

.cookie-consent-app-banner-top {
  top: 0;
  border-top: none;
  border-bottom: 1px solid var(--border-color, #e0e0e0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-app-banner-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  border-radius: var(--border-radius, 8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Content layout */
.cookie-consent-app-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-consent-app-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Text - inherits theme typography */
.cookie-consent-app-text {
  margin: 0;
  flex: 1;
}

/* Actions - uses theme button classes */
.cookie-consent-app-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Buttons use theme classes (btn, btn-primary, btn-secondary) */
/* No custom button styling - theme handles it */
