* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
  padding: 20px;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-banner h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cookie-banner p {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.btn-customise {
  background: white;
  color: #4285f4;
  border-color: #4285f4;
}

.btn-customise:hover {
  background: #f8f9ff;
}

.btn-reject {
  background: white;
  color: #4285f4;
  border-color: #4285f4;
}

.btn-reject:hover {
  background: #f8f9ff;
}

.btn-accept {
  background: #4285f4;
  color: white;
  border-color: #4285f4;
}

.btn-accept:hover {
  background: #3367d6;
}

/* Demo content */
.demo-content {
  text-align: center;
  margin-top: 100px;
}

.status {
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
}

.status.accepted {
  background: #e8f5e8;
  color: #2d7d2d;
}

.status.rejected {
  background: #fee;
  color: #d93025;
}

.status.customised {
  background: #fff3cd;
  color: #856404;
}

.reset-btn {
  margin-top: 20px;
  padding: 8px 16px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.reset-btn:hover {
  background: #5a6268;
}

/* Responsive design */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 24px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* Overlay */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: opacity 0.3s ease;
}

.cookie-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
