/* Pastors Monthly Reporting System - Styles */
/* Professional church-themed styling - Mobile Responsive */

/* CSS Variables */
:root {
    --primary-color: #2c5282;
    --primary-dark: #1a365d;
    --primary-light: #4299e1;
    --secondary-color: #744210;
    --accent-color: #d69e2e;
    --success-color: #38a169;
    --danger-color: #e53e3e;
    --warning-color: #d69e2e;
    --info-color: #3182ce;
    
    --bg-color: #f7fafc;
    --card-bg: #ffffff;
    --text-color: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    
    --transition: all 0.2s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.header-content {
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.header h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    font-weight: 400;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert-error {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-success {
    background-color: #c6f6d5;
    color: #276749;
    border: 1px solid #9ae6b4;
}

.alert .icon {
    font-size: 1.25rem;
}

/* Form Sections */
.form-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.form-section h2 {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.section-icon {
    font-size: 1.25rem;
}

/* Form Elements */
.form-row {
    margin-bottom: 1rem;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
}

label .required {
    color: var(--danger-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--font-size-base);
    background: white;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23718096'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.help-text {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Stats Row */
.stats-row input {
    font-size: var(--font-size-xl);
    font-weight: 600;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: inherit;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--border-light);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c53030;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: var(--font-size-base);
}

.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: var(--font-size-xs);
}

.btn-full {
    width: 100%;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.btn-icon {
    font-size: 1.125rem;
}

/* Success Card */
.success-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-card h2 {
    font-size: var(--font-size-2xl);
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.success-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.footer p {
    margin-bottom: 0.25rem;
}

.admin-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.admin-link a:hover {
    text-decoration: underline;
}

/* Admin Login */
.login-card {
    max-width: 400px;
    margin: 2rem auto;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.login-header h2 {
    font-size: var(--font-size-xl);
    color: var(--text-color);
}

.login-help {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.login-help code {
    background: var(--border-color);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
}

.login-help .warning {
    color: var(--danger-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Admin Navigation */
.admin-nav {
    margin-bottom: 2rem;
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow-x: auto;
}

.nav-tab {
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-tab:hover {
    background: var(--bg-color);
    color: var(--text-color);
}

.nav-tab.active {
    background: var(--primary-color);
    color: white;
}

.nav-logout {
    margin-left: auto;
    color: var(--danger-color);
}

.nav-logout:hover {
    background: #fed7d7;
}

/* Stats Section */
.stats-section {
    margin-bottom: 2rem;
}

.stats-section h2 {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stats-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-card.stat-salvations .stat-value {
    color: var(--success-color);
}

.stat-card.stat-baptisms .stat-value {
    color: var(--info-color);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Recent Reports */
.recent-reports {
    display: grid;
    gap: 0.75rem;
}

.recent-report-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.recent-report-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.recent-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.report-date {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.recent-report-church {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.recent-report-period {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.stat-mini {
    margin-left: 0.5rem;
}

.view-all-link {
    margin-top: 1rem;
    text-align: center;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.action-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.action-label {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Filter Section */
.filter-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.filter-section h2 {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: var(--font-size-xs);
    margin-bottom: 0.375rem;
}

.filter-search {
    grid-column: span 2;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

/* Results Summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.results-summary p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.btn-export {
    background: var(--success-color);
    color: white;
}

.btn-export:hover {
    background: #276749;
}

/* Data Table */
.table-responsive {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
}

.data-table th,
.data-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.data-table th {
    background: var(--bg-color);
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.data-table tbody tr:hover {
    background: var(--bg-color);
}

.data-table .numeric {
    text-align: right;
}

.data-table .date-cell {
    white-space: nowrap;
    color: var(--text-light);
}

.data-table .actions-cell {
    white-space: nowrap;
}

.data-table .actions-cell .btn {
    margin-right: 0.25rem;
}

.highlight-salvations {
    color: var(--success-color);
    font-weight: 600;
}

.highlight-baptisms {
    color: var(--info-color);
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition);
}

.pagination-link:hover {
    background: var(--bg-color);
    border-color: var(--primary-light);
}

.pagination-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-ellipsis {
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: var(--font-size-xl);
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Delete Confirmation */
.delete-confirmation {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.warning-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.delete-confirmation h2 {
    color: var(--danger-color);
    margin-bottom: 0.5rem;
}

.warning-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.report-preview {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: left;
}

.report-preview h3 {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-content p {
    margin-bottom: 0.5rem;
}

.delete-form .form-actions {
    justify-content: center;
}

.delete-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.delete-success .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.delete-success h2 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Report Detail View */
.report-detail-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.report-header {
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.report-header h2 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.report-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.badge-period {
    background: var(--primary-color);
    color: white;
}

.badge-date {
    background: var(--bg-color);
    color: var(--text-light);
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-salvations {
    color: var(--success-color);
}

.stat-baptisms {
    color: var(--info-color);
}

.report-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-section {
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
}

.detail-section h3 {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-item p {
    font-weight: 500;
}

.detail-text {
    line-height: 1.8;
    color: var(--text-color);
}

.meta-section {
    background: var(--border-light);
}

.report-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* No Data Message */
.no-data {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

/* Code Styling */
code {
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 0.9em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --font-size-3xl: 1.75rem;
        --font-size-2xl: 1.375rem;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .header h1 {
        font-size: var(--font-size-xl);
    }
    
    .subtitle {
        font-size: var(--font-size-base);
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
    
    .form-section {
        padding: 1.25rem;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .stats-grid,
    .stats-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: var(--font-size-2xl);
    }
    
    .nav-tabs {
        padding: 0.375rem;
    }
    
    .nav-tab {
        padding: 0.5rem 0.875rem;
        font-size: var(--font-size-sm);
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .filter-search {
        grid-column: span 1;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-actions .btn {
        width: 100%;
    }
    
    .results-summary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .data-table {
        font-size: var(--font-size-xs);
    }
    
    .data-table th,
    .data-table td {
        padding: 0.625rem 0.75rem;
    }
    
    .pagination-link {
        min-width: 2rem;
        height: 2rem;
        padding: 0 0.5rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .report-stats {
        grid-template-columns: 1fr;
    }
    
    .report-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .report-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .report-actions {
        flex-direction: column;
    }
    
    .report-actions .btn {
        width: 100%;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .login-card {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .delete-confirmation {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .stats-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .admin-nav,
    .form-actions,
    .report-actions,
    .filter-section,
    .pagination,
    .btn {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
    }
    
    .report-detail-card,
    .form-section {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}
