#notification-bar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 30%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  z-index: 10000;
  display: none;
  text-align: center;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

#publisher-logo {
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

#notification-bar h2 {
  font-size: 18px;
  color: #666;
  font-weight: bold;
  margin-bottom: 10px;
}

#notification-bar p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.notification-button {
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  margin-bottom: 10px;
  position: relative;
}

.notification-button .loading {
  display: none;
  margin-left: 8px;
  font-size: 12px;
}

.notification-button:hover,
.notification-button:focus,
.notification-button:active {
  background: #0056b3;
}

.branding {
  font-size: 12px;
  margin-top: 5px;
  color: black;
  text-align: center;
}
.branding .ads-by { color: red; }
.branding .monetiscope { color: blue; }

@media (max-width: 768px) {
  #notification-bar { width: 80%; padding: 15px; }
  #publisher-logo { height: 50px; }
  #notification-bar h2 { font-size: 16px; }
  #notification-bar p  { font-size: 12px; }
  .notification-button { padding: 8px 16px; font-size: 12px; }
}
