<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.edc-form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
form.edc-email-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
form.edc-email-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  outline: none;
}
form.edc-email-form button {
  background-color: #4CAF50;
  color: white;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
form.edc-email-form button:hover {
  background-color: #45a045;
}
.edc-banner {
  background: #4CAF50;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.edc-banner button,
.edc-banner #edc-close {
  margin-left: 10px;
  background: white;
  color: #4CAF50;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
}
#edc-close {
  float: right;
  font-size: 20px;
}
</pre></body></html>