/* =========================================
   🟧 Μπλοκ: Πλαίσιο Λήψης PDF Οδηγού Αιτήματος
   Αρχείο: diadikasia-ypovolis-epivevaiosis.css
   Συμβατό με WP Rocket / Responsive
========================================= */

.pdf-download-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #f9f9f9;
  border: 2px solid #ddd;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.pdf-icon {
  font-size: 38px;
  color: #1d4e89;
  flex-shrink: 0;
}

.pdf-text {
  flex: 1;
  font-size: 15.5px;
  line-height: 1.6;
}

.pdf-text strong {
   font-size: 17px;
  color: #144C43;
  display: inline;
  font-weight: 700;
}

.pdf-button {
  background-color: #1d4e89;       /* βασικό background */
  color: #fff;                     /* πάντα λευκό κείμενο */
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.pdf-button:hover {
  background-color: #144C43;       /* σκουρότερο hover background */
  color: #fff;                     /* παραμένει λευκό */
}

@media (max-width: 600px) {
  .pdf-download-frame {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .pdf-button {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
}