/* Scope Views Global Article Style */

/* Force a clean font and create a centered, readable 'page' effect */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    line-height: 1.6 !important;
    color: #2c3e50 !important;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
}

/* On mobile phones, remove the box-shadow and margins to maximize screen space */
@media (max-width: 850px) {
    body {
        margin: 0;
        padding: 1.5rem;
        box-shadow: none;
        border-radius: 0;
    }
}

/* Crucial: Ensure Word-exported images never break off the side of the screen */
img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
}

/* Clean up standard hyperlink colors */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}