/* SMS Preview Mailer Styles
 * Used for development preview of SMS messages via Letter Opener
 */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f5f5f5;
}

.sms-container {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.sms-header {
  background: #075e54;
  color: white;
  padding: 15px 20px;
  font-weight: 600;
}

.sms-header small {
  display: block;
  font-weight: normal;
  opacity: 0.8;
  margin-top: 4px;
}

.sms-body {
  padding: 20px;
}

.sms-bubble {
  background: #dcf8c6;
  padding: 12px 16px;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  display: inline-block;
  max-width: 85%;
  word-wrap: break-word;
}

.sms-meta {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #888;
}

.sms-meta strong {
  color: #666;
}

