﻿#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

#cookie-consent-banner.mobile {
  flex-direction: column;
  align-items: stretch;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

#cookie-consent-banner a {
  color: #4a9eff;
  text-decoration: none;
}

#cookie-consent-banner a:hover {
  text-decoration: underline;
}

#cookie-consent-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#cookie-accept-btn {
  background: #4a9eff;
  color: #fff;
}

#cookie-accept-btn:hover {
  background: #357abd;
}

#cookie-reject-btn {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}

#cookie-reject-btn:hover {
  border-color: #999;
  color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px;
  }

  #cookie-consent-banner p {
    min-width: auto;
  }

  #cookie-consent-banner button {
    width: 48%;
    display: inline-block;
  }

  #cookie-reject-btn {
    margin-right: auto;
  }

  #cookie-accept-btn {
    margin-left: auto;
  }
}
