/* --- common.css: Shared styles for all tenants --- */

:root {
    --primary-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --serif-font: "Georgia", "Times New Roman", serif;

    --text-color: #333;
    --background-color: #f8f9fa;
    --accent-color: #007bff;
    --border-color: #dee2e6;
    --card-background: #ffffff;
}

/* --- Basic Reset & Defaults --- */
body {
    margin: 0;
    padding: 0; /* Padding moved to container or specific elements */
    font-family: var(--primary-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 800px;
    background-color: var(--card-background);
    padding: 2rem 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 2rem auto; /* Center the container and add vertical space */
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    text-align: center;
}

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Utility Classes --- */
.plain {
    /* This is the default paragraph style */
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

/* --- Responsive Styles for Mobile/Tablet --- */
@media (max-width: 768px) {
    /* Reduce container padding on smaller screens */
    .container {
        padding: 1rem 1rem;
    }
}
