/* assets/css/receipt.css */

body{
    margin:0;
    padding:40px 20px;
    background:#f4f5f7;
    font-family:Arial, sans-serif;
    color:#111;
}

.receipt-container{
    max-width:700px;
    margin:auto;
}

.receipt-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    padding:30px;
}

.receipt-header{
    border-bottom:1px solid #eee;
    padding-bottom:20px;
    margin-bottom:20px;
}

.receipt-header h1{
    margin:0;
    font-size:30px;
}

.receipt-header p{
    color:#666;
    margin-top:8px;
}

.receipt-info{
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
    flex-wrap:wrap;
    gap:20px;
}

.receipt-items{
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.receipt-item{
    display:flex;
    justify-content:space-between;
    padding:16px 0;
    border-bottom:1px solid #f1f1f1;
}

.receipt-item:last-child{
    border-bottom:none;
}

.receipt-total{
    display:flex;
    justify-content:space-between;
    font-size:22px;
    font-weight:bold;
    margin-top:25px;
}

.receipt-footer{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

button{
    background:#111;
    color:#fff;
    border:none;
    padding:12px 18px;
    border-radius:6px;
    cursor:pointer;
}

button:hover{
    background:#333;
}

a{
    text-decoration:none;
    color:#111;
    display:flex;
    align-items:center;
}

@media (max-width:600px){

    .receipt-card{
        padding:20px;
    }

    .receipt-info{
        flex-direction:column;
    }

}