@import "../../styles/variables.scss";

.cookieConsent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: $white;
  color: $text-grey1;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  padding: $pad + 10 $pad + 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: $gap + 10;
  font-size: $font + 8;
  font-family: $font-family;

  a {
    color: $text-blue;
    text-decoration: underline;
    font-weight: $font-weight-bold;
  }
}

.acceptBtn {
  background: $blue;
  color: $white;
  border: none;
  border-radius: $bdr-rds;
  padding: $pad $pad + 10;
  font-size: $font + 6;
  font-family: $font-family;
  font-weight: $font-weight-bold;
  cursor: pointer;
  margin-left: $mrg + 10;
  transition: background 0.2s;

  &:hover {
    background: $blue2;
  }
} 