#ng-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #43934E;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 99999;
  max-width: 680px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
#ng-cookie-banner.ng-hidden { display: none; }
#ng-cookie-banner p { margin: 0; flex: 1; }
#ng-cookie-accept {
  background: #ffffff;
  color: #43934E;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  flex-shrink: 0;
}
#ng-cookie-accept:hover { opacity: 0.85; }
@media (max-width: 600px) {
  #ng-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    border-radius: 4px 4px 0 0;
    width: 100%;
  }
  #ng-cookie-accept { width: 100%; text-align: center; }
}