/* app/assets/stylesheets/mailer.css */
.email-body {
  background-color: #0069a8; /* sky-700 */
  font-family: sans-serif;
}

.email-container {
  max-width: 320px;
  margin: 40px auto;
  background-color: #f8fafc; /* slate-50 */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.btn-primary {
  background-color: #0069a8; /* sky-700 */
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.text-header {
  color: #0069a8; /* sky-700 */
  font-size: 18px;
  font-weight: bold;
}

.text-body {
  color: #334155; /* slate-700 */
  font-size: 14px;
  line-height: 1.5;
}

.text-note {
  color: #62748e; /* slate-500 */
  font-size: 12px;
}

.text-danger {
  color: #ef4444;
  font-size: 14px;
  font-weight: 600;
}

.text-signature {
  color: #0069a8; /* sky-700 */
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
}

@media only screen and (min-width: 600px) {
  .email-body {
    padding: 40px !important;
  }

  .email-container {
    max-width: 1200px !important;
    padding: 32px !important;
  }

  .text-header {
    font-size: 22px !important;
  }

  .text-body, .text-danger, .text-signature {
    font-size: 16px !important;
  }

  .text-note {
    font-size: 14px !important;
  }

  .btn-primary {
    padding: 12px 24px !important;
    border-radius: 8px !important;
  }
}