#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff;
  border-top: 3px solid #0355cc;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

#cookie-consent-banner .cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

#cookie-consent-banner .cookie-consent-text {
  flex: 1 1 280px;
  margin: 0;
}

#cookie-consent-banner .cookie-consent-text a {
  color: #0355cc;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

#cookie-consent-banner .cookie-consent-btn {
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 120px;
}

#cookie-consent-banner .cookie-consent-btn-refuse {
  background: #fff;
  color: #333;
  border: 2px solid #666;
}

#cookie-consent-banner .cookie-consent-btn-refuse:hover {
  background: #f5f5f5;
}

#cookie-consent-banner .cookie-consent-btn-accept {
  background: #0355cc;
  color: #fff;
}

#cookie-consent-banner .cookie-consent-btn-accept:hover {
  background: #0244a3;
}

@media (max-width: 576px) {
  #cookie-consent-banner {
    padding: 1rem;
  }

  #cookie-consent-banner .cookie-consent-actions {
    width: 100%;
  }

  #cookie-consent-banner .cookie-consent-btn {
    flex: 1;
  }
}
