#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00477b;
  color: #fff;
  padding: 16px 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1;
}

#cookie-consent-banner a {
  color: #5bc8f5;
  text-decoration: underline;
}

#cookie-consent-banner a:hover {
  color: #fff;
}

#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-consent-banner .cookie-btn-accept {
  background: #E87200;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}

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

#cookie-consent-banner .cookie-btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

#cookie-consent-banner .cookie-btn-decline:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  #cookie-consent-banner .cookie-btn-accept,
  #cookie-consent-banner .cookie-btn-decline {
    flex: 1;
    text-align: center;
  }
}
