/* LC Cookie Consent - Minimal Styles */
#lccc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #111;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.lccc-banner__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lccc-banner__text {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.5;
}

.lccc-banner__headline {
  font-weight: 600;
  margin-bottom: 6px;
}

.lccc-banner__content {
  font-size: 13px;
  opacity: 0.95;
}

.lccc-banner__content a {
  color: #80cbc4; /* teal-ish for contrast on dark bg */
  text-decoration: underline;
}

.lccc-banner__actions {
  display: flex;
  gap: 8px;
}

.lccc-btn {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.lccc-btn--accept {
  background: #2e7d32; /* green */
  color: #fff;
}

.lccc-btn--reject {
  background: #616161; /* grey */
  color: #fff;
}

@media (max-width: 600px) {
  .lccc-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .lccc-banner__actions {
    justify-content: flex-start;
  }
}
