#cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: #1f2a24;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent-banner[hidden] {
  display: none;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-consent-text a {
  color: #9ce5bf;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-consent-actions button {
  border: 1px solid #9ce5bf;
  background: transparent;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-consent-actions .cookie-accept {
  background: #9ce5bf;
  color: #112019;
}

.cookie-consent-manage-panel {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}
