/* Email Template Styles - Extracted from inline email styles */

/* Email Body Styles */
.email-body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.email-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Email Headers */
.email-header {
    color: #2c3e50;
}

/* Email Buttons */
.email-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.email-btn-success {
    background-color: #28a745;
}

.email-btn-danger {
    background-color: #dc3545;
}

.email-btn-primary {
    background-color: #007bff;
    padding: 12px 30px;
}

/* Email Content Sections */
.email-message-box {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #2196f3;
}

.email-message-header {
    margin-top: 0;
    color: #1976d2;
}

.email-message-text {
    margin-bottom: 0;
    font-style: italic;
}

.email-profile-section {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.email-profile-header {
    margin-top: 0;
}

.email-cta-section {
    text-align: center;
    margin: 30px 0;
}

/* Email Footer */
.email-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

.email-footer {
    font-size: 12px;
    color: #666;
}