/* consent.css — simplified version */
.cookie-banner-compact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  /* flex-wrap: wrap; */ /* Removed to ensure two columns */
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  width: 95%;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  z-index: 9999;
}

.cookie-text-compact {
  font-size: 14px;
  color: #333;
  flex: 1 1 auto;
  margin-right: 10px;
  min-width: 200px;
}

.cookie-actions-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-button {
  padding: 6px 14px;
  background-color: #dd3333;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.cookie-link {
  font-size: 14px;
  color: #4B78BA;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

