/* cookie-consent.css - Cookie consent banner styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #000;
  color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  padding: 14px 24px;
  z-index: 9998;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

#cookie-consent-banner .cc-text {
  flex: 1;
  margin-right: 24px;
}

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

#cookie-consent-banner .cc-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-shrink: 0;
}

#cookie-consent-banner .cc-accept {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 8px 20px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

#cookie-consent-banner .cc-accept:hover {
  background: #fff;
  color: #000;
}

#cookie-consent-banner .cc-decline {
  border: 1px solid #444;
  color: #666;
  background: transparent;
  padding: 8px 20px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

#cookie-consent-banner .cc-decline:hover {
  color: #999;
  border-color: #666;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  #cookie-consent-banner .cc-text {
    margin-right: 0;
  }

  #cookie-consent-banner .cc-buttons {
    flex-direction: row;
  }
}
