* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-color: #ffc107;
    --border-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --border-radius: 15px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-text h1 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header-text p {
    color: var(--text-light);
    font-size: 1.1em;
}

.btn-generate {
    background: var(--success-gradient);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Form Styles */
.form-section, .preview-section {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.form-section h2, .preview-section h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1em;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Slider Styles */
.slider-container {
    margin-top: 15px;
}

.slider {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary-gradient);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
}

/* Receipt Preview Styles */
.receipt-preview {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--border-color);
}

.receipt-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.receipt-number {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.receipt-date {
    color: var(--text-light);
    margin-top: 5px;
}

.receipt-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: #495057;
    font-weight: 500;
}

.progress-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
    border: 2px solid #dee2e6;
}

.progress-fill {
    height: 100%;
    background: var(--success-gradient);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.warning-section {
    background: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 6px solid var(--warning-color);
}

.contact-section {
    text-align: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #dee2e6;
}

.contact-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 15px 0;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: var(--success-gradient);
    color: white;
    padding: 25px;
    text-align: center;
}

.modal-body {
    padding: 35px;
}

.modal-footer {
    padding: 25px;
    text-align: center;
    border-top: 2px solid #e9ecef;
}

.email-status {
    text-align: center;
    margin: 30px 0;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    text-align: center;
    margin: 30px 0;
}

.success-text {
    color: #28a745;
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.1em;
}

.receipt-link {
    margin: 30px 0;
}

.link-container {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.link-container input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
}

.link-container button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 25px;
    line-height: 1.5;
}

.hidden {
    display: none;
}

/* Footer Logout */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.logout-btn {
    background: var(--secondary-gradient);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

/* Processing Page Styles */
.processing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.processing-card, .receipt-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 550px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.processing-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 25px;
}

.progress-container {
    margin: 35px 0;
}

.account-number {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    border: 2px solid #e9ecef;
    font-weight: 600;
}

/* Status Sections with Background Colors */
.status-header {
    background: var(--primary-gradient);
    color: white;
    padding: 25px;
    border-radius: 10px 10px 0 0;
    margin: -40px -40px 30px -40px;
}

.status-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.status-content {
    padding: 0 10px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 6px solid var(--warning-color);
}

.status-completed {
    background: #d4edda;
    color: #155724;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 6px solid #28a745;
}

.processing-status {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .form-section, .preview-section {
        padding: 25px;
    }
    
    .header {
        padding: 20px 25px;
    }
    
    .header-text h1 {
        font-size: 2em;
    }
    
    .processing-card, .receipt-card {
        padding: 30px 25px;
        margin: 10px;
    }
}
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-color: #ffc107;
    --border-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --border-radius: 15px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-text h1 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header-text p {
    color: var(--text-light);
    font-size: 1.1em;
}

.btn-generate {
    background: var(--success-gradient);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Form Styles */
.form-section, .preview-section {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.form-section h2, .preview-section h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1em;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Slider Styles */
.slider-container {
    margin-top: 15px;
}

.slider {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary-gradient);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
}

/* Receipt Preview Styles */
.receipt-preview {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--border-color);
}

.receipt-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.receipt-number {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.receipt-date {
    color: var(--text-light);
    margin-top: 5px;
}

.receipt-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: #495057;
    font-weight: 500;
}

.progress-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
    border: 2px solid #dee2e6;
}

.progress-fill {
    height: 100%;
    background: var(--success-gradient);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.warning-section {
    background: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 6px solid var(--warning-color);
}

.contact-section {
    text-align: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #dee2e6;
}

.contact-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 15px 0;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: var(--success-gradient);
    color: white;
    padding: 25px;
    text-align: center;
}

.modal-body {
    padding: 35px;
}

.modal-footer {
    padding: 25px;
    text-align: center;
    border-top: 2px solid #e9ecef;
}

.email-status {
    text-align: center;
    margin: 30px 0;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    text-align: center;
    margin: 30px 0;
}

.success-text {
    color: #28a745;
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.1em;
}

.receipt-link {
    margin: 30px 0;
}

.link-container {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.link-container input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
}

.link-container button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 25px;
    line-height: 1.5;
}

.hidden {
    display: none;
}

/* Footer Logout */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.logout-btn {
    background: var(--secondary-gradient);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

/* Processing Page Styles */
.processing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.processing-card, .receipt-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 550px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.processing-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 25px;
}

.progress-container {
    margin: 35px 0;
}

.account-number {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    border: 2px solid #e9ecef;
    font-weight: 600;
}

/* Status Sections with Background Colors */
.status-header {
    background: var(--primary-gradient);
    color: white;
    padding: 25px;
    border-radius: 10px 10px 0 0;
    margin: -40px -40px 30px -40px;
}

.status-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.status-content {
    padding: 0 10px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 6px solid var(--warning-color);
}

.status-completed {
    background: #d4edda;
    color: #155724;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 6px solid #28a745;
}

.processing-status {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .form-section, .preview-section {
        padding: 25px;
    }
    
    .header {
        padding: 20px 25px;
    }
    
    .header-text h1 {
        font-size: 2em;
    }
    
    .processing-card, .receipt-card {
        padding: 30px 25px;
        margin: 10px;
    }
}


/* Remove gradients from receipt elements */
.receipt-preview .contact-btn,
.receipt-card .contact-btn,
.receipt-preview .progress-fill,
.receipt-card .progress-fill {
    background: #667eea !important; /* Solid color instead of gradient */
}

/* Remove curved borders from receipt elements */
.receipt-preview,
.receipt-card,
.receipt-preview .warning-section,
.receipt-card .warning-section,
.receipt-preview .contact-btn,
.receipt-card .contact-btn,
.receipt-preview .progress-bar,
.receipt-card .progress-bar {
    border-radius: 0 !important;
}

/* Remove gradients from modal and other buttons except generate button */
.modal-header,
.link-container button {
    background: #667eea !important;
}

/* Keep gradient only for generate button */
.btn-generate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Remove gradient from all other buttons */
.btn-primary,
.contact-btn,
.logout-btn {
    background: #667eea !important;
}



/* Receipt Card Styling */
.receipt-card {
    background: white;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Status Header - Blue background covering full width */
.status-header {
    background: #3498db;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

.status-header h2 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
}

/* Status Content */
.status-content {
    padding: 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Payment Status - Brown text color, NO background */
.status-pending h3 {
    color: #8B4513; /* Brown color */
    margin: 0 0 15px 0;
    font-size: 1.5em;
    text-align: center;
}

.status-pending p {
    color: #666;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.status-pending p strong {
    color: #2c3e50;
    font-size: 1.1em;
}

/* Receipt Details - Light brown background */
.receipt-details {
    background: #f8f3e6;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #e0d6c2;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0d6c2;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    font-weight: bold;
    color: #2c3e50;
}

.detail-value {
    color: #2c3e50;
}

/* Make amount green and larger */
.detail-row:last-child .detail-value {
    color: #27ae60;
    font-size: 1.2em;
    font-weight: bold;
}

/* Warning Section */
.warning-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 6px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0;
}

.warning-section strong {
    color: #856404;
    font-size: 1.1em;
}

.warning-section p {
    color: #856404;
    margin: 10px 0 0 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #dee2e6;
}

.contact-section p {
    margin-bottom: 15px;
    color: #666;
}

.contact-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    font-weight: bold;
}

.contact-section small {
    color: #666;
}

.contact-section a {
    color: #667eea;
}

/* Processing Status */
.processing-status {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.processing-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 15px;
}

/* Remove gradients from receipt elements */
.receipt-card * {
    background-image: none !important;
}

/* Keep gradient only for generate button */
.btn-generate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Remove gradients from all other buttons */
.btn-primary,
.logout-btn,
.modal-header,
.link-container button {
    background: #667eea !important;
}
