body {
    background: #f1f5f9;
    font-family: system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.receipt-card {
    margin-top: 10vh;
    background: white;
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.success-icon {
    width: 80px;
    margin: 0 auto 10px;
}

hr {
    margin: 15px 0;
    border: none;
    height: 1px;
    background: #e5e7eb;
}

.payment-details {
display: grid;
grid-template-columns: max-content auto; 
gap: 8px 16px;
margin: 0 auto;
max-width: 250px;
text-align: left;
justify-content: center;
justify-items: start;
}

.payment-details p {
display: contents;
font-size: 15px;
color: #374151;
margin: 4px 0;
}

.payment-details .label {
font-weight: bold;
white-space: nowrap;
}

.payment-details .value {
white-space: nowrap;
}


.home-btn {
    margin-top: 20px;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.home-btn:hover {
    background: #0056b3;
}

.icon {
    width: 20px;
    height: 20px;
}