#rb-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #122D5E;
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 99999;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
#rb-cookie-banner p {
  margin: 0; flex: 1;
  min-width: 200px;
  line-height: 1.6;
  opacity: 0.92;
}
#rb-cookie-banner a {
  color: #A3CF5F;
  text-decoration: underline;
}
.rb-cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.rb-btn-accept {
  background: #A3CF5F;
  color: #122D5E;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.rb-btn-decline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 14px;
  cursor: pointer;
}
.rb-btn-prefs {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

body.rb-banner-active {
  padding-bottom: 80px !important;
 
}

body.rb-banner-active .bt_bb_port {
  padding-bottom: 0 !important;
}

@media(max-width: 600px) {
  #rb-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}