#rf-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483000;
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  color: #222;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  font-family: Arial, sans-serif;
}
#rf-consent .rfc-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}
#rf-consent .rfc-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
}
#rf-consent .rfc-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}
#rf-consent a {
  color: #1464c0;
  text-decoration: underline;
}
#rf-consent .rfc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#rf-consent button {
  border: 0;
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
#rf-consent .rfc-accept {
  background: #1e7e34;
  color: #fff;
}
#rf-consent .rfc-necessary {
  background: #f0f0f0;
  color: #222;
  border: 1px solid #ccc;
}
@media (max-width: 760px) {
  #rf-consent {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  #rf-consent .rfc-inner {
    display: block;
    padding: 14px;
  }
  #rf-consent .rfc-actions {
    margin-top: 12px;
    justify-content: stretch;
  }
  #rf-consent button {
    width: 100%;
  }
}
