.hus-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 380px;
  width: calc(100% - 40px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  z-index: 9999;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
  color: #0f172a;
}

.hus-cookie-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.hus-cookie-content p {
  margin: 0 0 16px 0;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
}

.hus-cookie-buttons {
  display: flex;
  gap: 10px;
}

.hus-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.hus-btn-accept {
  background-color: #2563eb;
  color: #ffffff;
}

.hus-btn-accept:hover {
  background-color: #1d4ed8;
}

.hus-btn-decline {
  background-color: #edf2f7;
  color: #4a5568;
}

.hus-btn-decline:hover {
  background-color: #e2e8f0;
}