#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid #03a9f4;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.cookie-consent-text strong {
  font-size: 16px;
  color: #000;
}

.cookie-consent-text a {
  color: #03a9f4;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #0288d1;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background-color: #03a9f4;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #0288d1;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(3, 169, 244, 0.3);
}

.cookie-btn-decline {
  background-color: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}

.cookie-btn-decline:hover {
  background-color: #e0e0e0;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 15px;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .cookie-consent-text {
    font-size: 13px;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  #cookie-consent-banner {
    background: #1e1e1e;
    border-top-color: #03a9f4;
  }

  .cookie-consent-text {
    color: #e0e0e0;
  }

  .cookie-consent-text strong {
    color: #fff;
  }

  .cookie-btn-decline {
    background-color: #2d2d2d;
    color: #e0e0e0;
    border-color: #444;
  }

  .cookie-btn-decline:hover {
    background-color: #3d3d3d;
  }
}

:root[data-theme="dark"] #cookie-consent-banner {
  background: #1e1e1e;
  border-top-color: #03a9f4;
}

:root[data-theme="dark"] .cookie-consent-text {
  color: #e0e0e0;
}

:root[data-theme="dark"] .cookie-consent-text strong {
  color: #fff;
}

:root[data-theme="dark"] .cookie-btn-decline {
  background-color: #2d2d2d;
  color: #e0e0e0;
  border-color: #444;
}

:root[data-theme="dark"] .cookie-btn-decline:hover {
  background-color: #3d3d3d;
}
