#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #111111;
  color: #ffffff;
  border-top: 3px solid #ffdd00;
  font-family: Arial, sans-serif;
}

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

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

.cookie-consent-inner a {
  color: #ffdd00;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-btn {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 8px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-primary {
  border-color: #ffdd00;
  background: #ffdd00;
  color: #111111;
  font-weight: bold;
}

.cookie-fb-block {
  padding: 8px;
  border: 1px solid #333333;
  background: #f5f5f5;
}

.cookie-fb-block p {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #111111;
}

.cookie-open-settings {
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  padding: 6px 10px;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
