.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
}

.cookie-consent-content {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(7, 19, 49, 0.96);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-link {
  color: #8ec5ff;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-consent-link:hover {
  color: #b7daff;
}

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

.cookie-consent-btn {
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid transparent;
}

.cookie-consent-btn-accept {
  background: #2f9e44;
  color: #fff;
}

.cookie-consent-btn-accept:hover {
  background: #2b8a3e;
  color: #fff;
}

.cookie-consent-btn-decline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-consent-btn-decline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    justify-content: flex-end;
  }
}
