<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* wrapper generale */
.edl-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

/* titolo */
.edl-title {
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* copertina */
.edl-cover img {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  margin: 0 auto 20px;
}

/* descrizione */
.edl-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* form */
.edl-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
}

.edl-btn {
  all: unset;
  display: block;
  margin: 0 auto;
  padding: 12px 24px;
  background: #353b4a;
  color: #fff !important;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.edl-btn:hover {
  background: #2c3140;
  transform: translateY(-2px);
}

/* plugin SDM download link */
a.sdm_download.blue {
  all: unset;
  display: block;
  margin: 24px auto 0;
  padding: 12px 24px;
  background: #353b4a;
  color: #fff !important;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-shadow: none !important;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}

a.sdm_download.blue:hover {
  background: #2c3140 !important;
}
</pre></body></html>