/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.receipt-container {
    transition: all 0.3s ease;
}

/* Status Colors */
.status-successful {
    color: #10B981;
}

.status-pending {
    color: #F59E0B;
}

.status-failed {
    color: #EF4444;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #3B82F6, #10B981);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #2563EB, #059669);
}

/* Form Styling */
input:focus, select:focus {
    outline: none;
    ring: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .receipt-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}