/* Receipt Modal Styles */
.receipt-modal .modal-content {
    max-width: 600px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.receipt-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
}

.receipt-header {
    text-align: center;
    padding: 30px 20px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.receipt-success-icon {
    width: 64px;
    height: 64px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.receipt-header h2 {
    margin: 0 0 5px;
    color: #111827;
}

.receipt-header p {
    color: #6b7280;
    margin: 0;
}

.receipt-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.receipt-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e5e7eb;
}

.receipt-section:last-child {
    border-bottom: none;
}

.receipt-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.receipt-section p {
    margin: 4px 0;
    font-size: 14px;
    color: #374151;
}

.receipt-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.receipt-item-main {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.receipt-qty {
    color: #6b7280;
    margin-right: 8px;
    min-width: 20px;
}

.receipt-name {
    flex: 1;
    margin-right: 15px;
}

.receipt-details {
    font-size: 12px;
    color: #6b7280;
    margin-left: 28px;
    margin-top: 2px;
}

.receipt-totals {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.receipt-row.total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    margin-bottom: 0;
}

.receipt-actions {
    padding: 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-print {
    display: flex;
    align-items: center;
    gap: 8px;
}