#studiografix-newsletter-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1000;
  display: none; /* Initially hidden */
}

#studiografix-newsletter-popup h3 {
  margin-top: 0;
  font-size: 1.2em;
}

#studiografix-newsletter-popup p {
    margin-bottom: 15px;
}

#studiografix-newsletter-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

#newsletter-form-wrapper #newsletter-form-message {
  color: green;
  margin-bottom: 10px;
}

#studiografix-newsletter-popup input[type="email"] {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

#studiografix-newsletter-popup input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}