.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: #fff;
  border-top: 1px solid rgba(229, 231, 235, 1);
  box-shadow: 0 -10px 30px rgba(2, 6, 23, 0.06);
  padding: 8px 16px;
  border-radius: 0;
}

.cookie-consent__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.cookie-consent__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.35;
  color: #0f172a;
}

.cookie-consent__text p {
  margin: 0 0 6px 0;
}

.cookie-consent__text p:last-child {
  margin-bottom: 0;
}

.cookie-consent__text a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.cookie-consent__text a:hover {
  text-decoration: underline;
}

.cookie-consent__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

/* Override legacy global styles for .cookie-alert button */
.cookie-consent .cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid #0d78e3;
  background-color: #0d78e3;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(13, 120, 227, 0.18);
  width: auto !important;
  margin: 0 !important;
}

.cookie-consent .cookie-consent__btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 560px) {
  .cookie-consent {
    padding: 8px 12px;
  }
  .cookie-consent__inner {
    gap: 12px;
  }
  .cookie-consent .cookie-consent__btn {
    padding: 9px 14px;
  }
}

