
* {
    box-sizing: border-box;
}

      @page {
    size: A4;
    margin: 10mm;
}

body {
    font-family: Arial, sans-serif;
    color: #111;
    background: #f3f4f6;
    margin: 0;
    padding: 10px;
	font-size: 12px;
    line-height: 1.35;
}

.document {
    width: 210mm;
    min-height: 297mm;
    margin: auto;
    background: white;
     padding:
        4mm
        10mm
        10mm
        10mm;
    box-sizing: border-box;
}

.floating-logo {
    float: right;
    width: 110px;
    height: auto;
    margin: 0 0 10px 20px;
}

.intro-text {
    text-align: justify;
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

h1 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #111827;
}

h2 {
font-size: 15px;
    margin-top: 18px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
    color: #111827;
}

.section {
    margin-bottom: 30px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 12px;
}

.info-table td {
    padding: 6px 8px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.info-label {
    width: 1%;
    font-weight: bold;
    background: #f3f4f6;
    white-space: nowrap;
}

.payment-note {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.4;
}


.court-order {
   margin: 6px 0;
    text-align: justify;
}

.court-order-image {

    float: right;

    width: 210px;

   margin: 0 0 10px 20px;

    border: 1px solid #ccc;

}

.court-order::after {
    content: "";
    display: block;
    clear: both;
}

.evidence-section {
    margin-top: 15px;
}


.evidence-images {
    width: 100%;
    margin-top: 15px;
    overflow: hidden;
    white-space: nowrap;
	 page-break-inside: avoid;
}

.evidence-image {
    display: inline-block;
    width: 32%;
    margin-right: 1%;
    vertical-align: top;
    text-align: center;
}

.evidence-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.print-button {
    margin-bottom: 10px;
}

.print-button button {
    padding: 12px 18px;
    background: #111827;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.case-button button {
    display: inline-block;

    padding: 8px 14px;

    background: #111827;

    color: white;

    text-decoration: none;

    border-radius: 4px;

    font-size: 12px;
}

.print-button button:hover {
    background: #000;
}

.case-button button:hover {
    background: #000;
}

@media print {

    body {
        background: white;
        padding: 0;
    }

    .document {
        width: 100%;
        min-height: auto;
        padding: 0;
        box-shadow: none;
    }

    .print-button {
        display: none;
    }
    .case-button {
        display: none;
    }

}

p {
   
    margin-bottom: 6px;
}


