/* EDD Changelog Enhanced Styles */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding: 20px;
    font-size: 14px;
}

.changelog-container {
    max-width: 800px;
    margin: 0 auto;
}

.changelog-header {
    border-bottom: 2px solid #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.changelog-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 5px;
}

.changelog-subtitle {
    color: #666;
    font-size: 14px;
}

/* Microformats styling for entries */
.h-feed {
    margin-top: 0;
}

.h-entry {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.h-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.entry-header {
    margin-bottom: 20px;
}

.p-name {
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 5px;
    display: block;
}

.dt-published {
    color: #666;
    font-size: 13px;
    font-weight: normal;
}

.entry-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 10px;
}

.e-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.e-content ul,
.e-content ol {
    margin: 15px 0 15px 20px;
}

.e-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.e-content code {
    background: #f1f1f1;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: "Consolas", "Monaco", "Courier New", monospace;
    font-size: 13px;
}

.e-content pre {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    overflow-x: auto;
    margin: 15px 0;
}

.e-content blockquote {
    border-left: 4px solid #ddd;
    margin: 15px 0;
    padding-left: 15px;
    color: #666;
}

.e-content a {
    color: #0073aa;
    text-decoration: none;
}

.e-content a:hover {
    text-decoration: underline;
}

.u-url {
    display: none;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 15px;
        font-size: 13px;
    }
    
    .changelog-title {
        font-size: 20px;
    }
    
    .p-name {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 15px;
    }
}

/* Print styles */
@media print {
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .e-content a {
        color: #000;
        text-decoration: underline;
    }
}