#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px;
  animation: slideUp 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#cookie-consent-banner.cookie-consent-hidden {
  transform: translateY(100%);
  opacity: 0;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.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 {
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.cookie-consent-text a {
  color: #337ab7;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #23527c;
}

.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: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-accept {
  background-color: #5cb85c;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #449d44;
}

.cookie-decline {
  background-color: #6c757d;
  color: #fff;
}

.cookie-decline:hover {
  background-color: #5a6268;
}

@media (max-width: 767px) {
  #cookie-consent-banner {
    padding: 15px;
  }

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

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

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

  .cookie-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .cookie-consent-text {
    font-size: 12px;
  }

  .cookie-btn {
    font-size: 13px;
  }
}
