/* Email-like styling for ABM guide */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
    color: #333;
}

.email-container {
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.email-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 30px;
}

.subject-line {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.email-meta {
    font-size: 14px;
    color: #666;
}

.email-body {
    padding: 30px;
    font-size: 16px;
    color: #333;
}

.email-body p {
    margin-bottom: 16px;
}

.email-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

.email-body ul, .email-body ol {
    margin: 16px 0;
    padding-left: 20px;
}

.email-body li {
    margin-bottom: 8px;
}

.email-body h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 16px 0;
    color: #1a1a1a;
}

.signature {
    margin-top: 32px;
    color: #666;
}

.ps-section {
    margin-top: 24px;
    font-style: italic;
    color: #666;
}

.navigation {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #0052a3;
}

.nav-button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-info {
    font-size: 14px;
    color: #666;
}

/* Styling for different content elements */
.email-body blockquote {
    border-left: 3px solid #0066cc;
    padding-left: 16px;
    margin: 16px 0;
    color: #555;
}

.email-body code {
    background-color: #f5f5f5;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* Checkbox styling */
.email-body input[type="checkbox"] {
    margin-right: 8px;
}

/* Table styling */
.email-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 16px 0;
}

.email-body th, .email-body td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.email-body th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .email-container {
        margin: 0;
        border-radius: 0;
    }
    
    .email-header, .email-body, .navigation {
        padding: 20px;
    }
    
    .subject-line {
        font-size: 18px;
    }
    
    .email-body {
        font-size: 15px;
    }
}

/* Logo styling */
.logo-section {
    text-align: center;
    margin: 20px auto;
    padding: 5px;
}

.email-logo {
    width: 100px;
    height: auto;
    display: inline-block;
} 