﻿.report-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.report-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2c3e50;
}

.report-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.report-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
}

.section-title {
    color: #2c3e50;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.loan-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e9ecef;
}

.detail-label {
    font-weight: 500;
    color: #6c757d;
}

.detail-value {
    font-weight: 600;
    color: #2c3e50;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

    .summary-table th {
        background-color: #2c3e50;
        color: white;
        text-align: left;
        padding: 0.75rem;
    }

    .summary-table td {
        padding: 0.75rem;
        border-bottom: 1px solid #e9ecef;
    }

    .summary-table tr:nth-child(even) {
        background-color: #f8f9fa;
    }

.amount-highlight {
    color: #e74c3c;
    font-weight: 700;
}

.divider {
    border-top: 2px solid #e9ecef;
    margin: 1.5rem 0;
}

.footer {
    margin-top: 2rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 180px;
    height: auto;
}

@media print {
    body {
        background: white;
    }

    .report-container {
        box-shadow: none;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .no-print {
        display: none;
    }
}
