body{
background:#eee;
font-family:Arial,Helvetica,sans-serif;
}

.receipt-wrapper{
max-width:1100px;
margin:20px auto;
background:#fff;
padding:40px;
}

.receipt-title{
font-size:42px;
font-weight:900;
text-align:right;
}

.receipt-meta{
display:flex;
justify-content:space-between;
margin:30px 0;
font-weight:bold;
}

.two-col{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
margin-bottom:25px;
}

.box{
border:1px solid #ddd;
padding:20px;
}

.section-title{
    background:#000;
    color:#fff;
    padding:14px 18px;
    margin:-20px -20px 20px;
    font-weight:700;
    position:relative;
    overflow:hidden;
}

.section-title:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:30px;
    height:100%;
    background:#d10000;
    transform:skew(-20deg);
}

.payment-table{
width:100%;
border-collapse:collapse;
}

.payment-table th,
.payment-table td{
border:1px solid #ddd;
padding:12px;
}

.amount-received{
display:flex;
border:1px solid #ddd;
margin:25px 0;
}

.amount-received .label{
flex:1;
padding:20px;
font-weight:bold;
}

.amount{
    background:#d10000;
    color:#fff;
    font-size:48px;
    font-weight:900;
    padding:25px 50px;
    min-width:250px;
    text-align:center;
}

.signature-row{
display:flex;
gap:50px;
margin-top:50px;
}

.signature{
flex:1;
}

.line{
border-bottom:2px solid #000;
margin-top:50px;
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:30px;
}

.dealer-left{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.dealer-info{
    font-size:13px;
    line-height:1.6;
}

.receipt-title{
    font-size:34px;
    font-weight:900;
    text-align:right;
    max-width:400px;
}

.dealer-logo{
    width:80px !important;
    max-width:80px !important;
    height:auto !important;
}

.dealer-info{
font-size:14px;
line-height:1.7;
}

.actions{
text-align:right;
margin-bottom:20px;
}

.actions button{
background:#d10000;
color:#fff;
border:none;
padding:12px 20px;
cursor:pointer;
font-weight:bold;
}

.confirmation-box{
    border:1px solid #ddd;
    padding:20px;
    margin-top:25px;
    line-height:1.8;
}

.stamp-box{
    width:220px;
    height:140px;
    border:3px dashed #d10000;
    margin-top:30px;
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#d10000;
}