| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- .split-view {
- display: flex;
- gap: 40px;
- padding: 20px;
- font-family: 'Inter', sans-serif;
- max-width: 1200px;
- margin: 0 auto;
- }
- .receipt-container {
- flex: 1;
- border-right: 2px solid #eee;
- padding-right: 40px;
- display: flex;
- flex-direction: column;
- }
- .form-container {
- flex: 1;
- }
- .preview-wrapper {
- position: relative;
- width: 100%;
- min-height: 400px;
- background: #f9f9f9;
- border: 2px dashed #ccc;
- border-radius: 8px;
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- }
- .receipt-preview {
- width: 100%;
- height: auto;
- border-radius: 8px;
- box-shadow: 0 4px 6px rgba(0,0,0,0.1);
- }
- .placeholder {
- color: #888;
- text-align: center;
- padding: 20px;
- }
- .review-banner {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- background: #ff4d4f;
- color: white;
- padding: 10px;
- text-align: center;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 10px;
- z-index: 10;
- }
- .upload-section {
- margin-top: 20px;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 10px;
- }
- .upload-btn {
- background: #007bff;
- color: white;
- border: none;
- padding: 12px 24px;
- border-radius: 6px;
- cursor: pointer;
- font-weight: 600;
- transition: background 0.2s;
- }
- .upload-btn:hover {
- background: #0056b3;
- }
- .form-field {
- margin-bottom: 20px;
- padding: 15px;
- border-radius: 8px;
- transition: all 0.3s ease;
- }
- .form-field label {
- display: block;
- margin-bottom: 8px;
- font-weight: 500;
- color: #333;
- }
- .form-field input, .form-field select {
- width: 100%;
- padding: 10px;
- border: 1px solid #ddd;
- border-radius: 4px;
- box-sizing: border-box;
- }
- .amount-input {
- display: flex;
- gap: 10px;
- }
- .amount-input input {
- flex: 3;
- }
- .amount-input select {
- flex: 1;
- }
- .ai-unconfident {
- border: 2px solid #ffa500 !important;
- background-color: #fff9e6;
- }
- .confidence-badge {
- margin-top: 8px;
- font-size: 0.8rem;
- color: #666;
- font-style: italic;
- }.submit-btn {
- width: 100%;
- background: #28a745;
- color: white;
- border: none;
- padding: 15px;
- border-radius: 6px;
- cursor: pointer;
- font-weight: 600;
- margin-top: 20px;
- }
- .submit-btn:disabled {
- background: #ccc;
- cursor: not-allowed;
- }
- .spinner {
- color: #007bff;
- font-weight: 500;
- }
- .currency-label {
- padding: 10px;
- background: #eee;
- border: 1px solid #ddd;
- border-left: none;
- border-radius: 0 4px 4px 0;
- font-weight: bold;
- color: #555;
- display: flex;
- align-items: center;
- }
|