/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* App Container */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #1E5757 0%, #2A6A6A 100%);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.welcome-message {
    margin-top: 1rem;
}

.welcome-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Content Section */
.content {
    background: #E0E0E0;
    padding: 2rem 1.5rem;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.page-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

/* Booking Options */
.booking-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.booking-option {
    text-align: center;
}

.option-button {
    background: #1E5757;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.option-button:hover {
    background: #2A6A6A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 87, 87, 0.3);
}

.option-details {
    text-align: center;
}

.availability {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E5757;
    margin-bottom: 0.5rem;
}

.description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Navigation */
.navigation {
    text-align: center;
    margin-top: 2rem;
}

.nav-button {
    background: #1E5757;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.nav-button:hover {
    background: #2A6A6A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 87, 87, 0.3);
}

/* Rooms Grid */
.rooms-container {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-card {
    background: linear-gradient(135deg, #1E5757 0%, #2D7D7D 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.room-card:hover::before {
    left: 100%;
}

.room-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(30, 87, 87, 0.3);
}

.room-number {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-status {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.status-vacant {
    background: #4CAF50;
    color: white;
}

.status-occupied {
    background: #FF9800;
    color: white;
}

.status-maintenance {
    background: #F44336;
    color: white;
}

/* Loading */
.loading {
    text-align: center;
    color: #666;
    font-size: 1rem;
    padding: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #000;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E5757;
}

.submit-button {
    background: #1E5757;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #2A6A6A;
}

.submit-button.disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}

.submit-button.disabled:hover {
    background: #ccc !important;
    transform: none !important;
}

.cancel-button {
    background: #666;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-button:hover {
    background: #777;
}

/* Success Modal */
.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 1rem;
}

.total-amount {
    background: #f0f0f0;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    color: #1E5757;
    text-align: center;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions .submit-button,
.modal-actions .cancel-button {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 480px) {
    .app-container {
        max-width: 100%;
        border-radius: 0;
    }
    
    .header {
        padding: 1.5rem 1rem;
    }
    
    .content {
        padding: 1.5rem 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-option,
.room-card {
    animation: fadeIn 0.5s ease-out;
}

/* Stay Type Button Styles */
.stay-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.stay-type-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.stay-type-btn:hover {
    border-color: #1E5757;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stay-type-btn.selected {
    border-color: #1E5757;
    background: #f0f9ff;
    box-shadow: 0 0 0 3px rgba(30, 87, 87, 0.1);
}

.stay-type-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.stay-type-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.stay-type-info p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.stay-type-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1E5757;
}

@media (max-width: 768px) {
    .stay-type-buttons {
        grid-template-columns: 1fr;
    }
    
    .stay-type-btn {
        padding: 1rem;
    }
    
    .stay-type-icon {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Enhanced Booking Modal Styles */
.booking-modal-content {
    max-width: 600px;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #1E5757;
    color: white;
}

.step-title {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.step.active .step-title {
    color: #1E5757;
    font-weight: 600;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step h3 {
    color: #1E5757;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.next-step-btn, .prev-step-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-step-btn {
    background: #1E5757;
    color: white;
}

.next-step-btn:hover {
    background: #164747;
}

.prev-step-btn {
    background: #6c757d;
    color: white;
}

.prev-step-btn:hover {
    background: #5a6268;
}

.payment-details {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.transfer-info h4 {
    color: #1E5757;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.transfer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.transfer-info strong {
    color: #1E5757;
}

.online-payment-info h4 {
    color: #1E5757;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.online-payment-info p {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.online-payment-info em {
    color: #dc3545;
    font-style: italic;
}

/* Enhanced Room Card Styles */
.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-title {
    flex: 1;
}

.room-title h3 {
    margin: 0 0 0.25rem 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.room-title .room-name {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.room-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.view-btn, .book-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-btn {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-btn:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.book-btn {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.book-btn::before, .view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.book-btn:hover::before, .view-btn:hover::before {
    left: 100%;
}

.status-on_hold {
    background: #ffc107;
    color: #212529;
}

.no-rooms {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    padding: 3rem 1rem;
} 

/* Payment Method Buttons Styles */
.payment-method-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Hide payment method smoothly */
.payment-method-btn[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
    margin: 0;
    padding: 0;
    height: 0;
    min-height: 0;
    border: none;
    transition: all 0.3s ease;
}

.payment-method-btn:hover {
    border-color: #1E5757;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 87, 87, 0.15);
}

.payment-method-btn.selected {
    border-color: #1E5757;
    background: #e8f5e8;
    box-shadow: 0 4px 12px rgba(30, 87, 87, 0.2);
}

.payment-method-btn.selected::before {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #1E5757;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-icon {
    font-size: 2rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-method-btn:hover .payment-icon {
    background: #1E5757;
    color: white;
    transform: scale(1.1);
}

.payment-method-btn.selected .payment-icon {
    background: #1E5757;
    color: white;
}

.payment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E5757;
    margin: 0;
}

.payment-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Payment Method Specific Styles */
.payment-method-btn[data-method="cash"] .payment-icon {
    background: #e8f5e8;
    color: #2e7d32;
}

.payment-method-btn[data-method="direct_transfer"] .payment-icon {
    background: #fff3e0;
    color: #f57c00;
}

.payment-method-btn[data-method="online"] .payment-icon {
    background: #e3f2fd;
    color: #1976d2;
}

.payment-method-btn[data-method="cash"]:hover .payment-icon,
.payment-method-btn[data-method="cash"].selected .payment-icon {
    background: #2e7d32;
    color: white;
}

.payment-method-btn[data-method="direct_transfer"]:hover .payment-icon,
.payment-method-btn[data-method="direct_transfer"].selected .payment-icon {
    background: #f57c00;
    color: white;
}

.payment-method-btn[data-method="online"]:hover .payment-icon,
.payment-method-btn[data-method="online"].selected .payment-icon {
    background: #1976d2;
    color: white;
}

/* Responsive Design for Payment Buttons */
@media (max-width: 480px) {
    .payment-method-btn {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
        min-width: 40px;
        height: 40px;
    }
    
    .payment-label {
        font-size: 1rem;
    }
    
    .payment-description {
        font-size: 0.85rem;
    }
} 

/* Account Details and Copy Button Styles */
.account-number-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.account-number-row strong {
    min-width: 120px;
    flex-shrink: 0;
}

.account-number-row span {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    flex: 1;
    font-size: 0.9rem;
    color: #495057;
}

.copy-btn {
    background: #1E5757;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #164646;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(30, 87, 87, 0.3);
}

.copy-btn.copied {
    background: #28a745;
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Transfer Info Styles */
.transfer-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.transfer-info h4 {
    color: #1E5757;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#bankDetails p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#bankDetails p:not(.account-number-row) {
    display: block;
}

#bankDetails p:not(.account-number-row) strong {
    display: inline-block;
    min-width: 120px;
}

/* Responsive Design for Copy Buttons */
@media (max-width: 480px) {
    .account-number-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .account-number-row strong {
        min-width: auto;
    }
    
    .account-number-row span {
        width: 100%;
        font-size: 0.85rem;
    }
    
    .copy-btn {
        align-self: flex-end;
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Bank Account Styles */
.bank-account {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.bank-account:last-child {
    margin-bottom: 0;
}

.bank-account h5 {
    color: #1E5757;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.primary-account {
    border-left: 4px solid #28a745;
}

.secondary-account {
    border-left: 4px solid #007bff;
}

.transfer-instructions {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.transfer-instructions h5 {
    color: #856404;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transfer-instructions h5:before {
    content: "💡";
    font-size: 1.2rem;
}

.transfer-instructions p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced account number styling */
.account-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Multiple bank accounts layout */
#bankDetails .bank-account + .bank-account {
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .bank-account {
        padding: 0.75rem;
    }
    
    .bank-account h5 {
        font-size: 0.9rem;
    }
    
    .transfer-instructions {
        padding: 0.75rem;
    }
    
    .transfer-instructions p {
        font-size: 0.85rem;
    }
}

/* OCR Verification Styles */
.ocr-verification {
    margin-top: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    background: #f8f9fa;
}

.ocr-progress {
    text-align: center;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1E5757, #2A6A6A);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.ocr-results {
    background: white;
    border-radius: 6px;
    padding: 1rem;
}

.verification-header h5 {
    color: #1E5757;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.verification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.verification-item:last-child {
    border-bottom: none;
}

.verification-label {
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
}

.verification-result {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.verification-result.success {
    background: #d4edda;
    color: #155724;
}

.verification-result.warning {
    background: #fff3cd;
    color: #856404;
}

.verification-result.error {
    background: #f8d7da;
    color: #721c24;
}

.verification-result.info {
    background: #d1ecf1;
    color: #0c5460;
}

.verification-success {
    color: #28a745;
}

.verification-warning {
    color: #ffc107;
}

.verification-error {
    color: #dc3545;
}

.verification-info {
    color: #17a2b8;
}

.extracted-text {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.extracted-text h6 {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.extracted-text textarea {
    width: 100%;
    height: 100px;
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: #f8f9fa;
    color: #6c757d;
    resize: vertical;
}

.toggle-text-btn, .retry-btn, .manual-verify-btn {
    background: #1E5757;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    margin: 0.25rem 0.25rem 0 0;
    transition: background-color 0.2s;
}

.toggle-text-btn:hover, .retry-btn:hover, .manual-verify-btn:hover {
    background: #2A6A6A;
}

.retry-btn {
    background: #dc3545;
}

.retry-btn:hover {
    background: #c82333;
}

.manual-verify-btn {
    background: #28a745;
}

.manual-verify-btn:hover {
    background: #218838;
}

/* Manual Verification Styles */
.manual-verification {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
}

.manual-verification h6 {
    color: #1E5757;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.manual-verification p {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.manual-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: white;
    transition: border-color 0.2s;
}

.manual-input:focus {
    outline: none;
    border-color: #1E5757;
    box-shadow: 0 0 0 2px rgba(30, 87, 87, 0.1);
}

#manualVerificationResult {
    margin-top: 0.75rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.time-requirement-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #856404;
    line-height: 1.4;
}

.time-requirement-note strong {
    font-weight: 600;
}

.upload-time-notice {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #1565c0;
}

.upload-time-notice strong {
    font-weight: 600;
}

/* Disabled booking button styles */
.submit-button:disabled {
    background-color: #e0e0e0 !important;
    color: #9e9e9e !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease;
}

.submit-button:disabled:hover {
    background-color: #e0e0e0 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Booking status message styles */
.booking-status-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.booking-status-message.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.booking-status-message.warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

/* OCR Status Message Styles */
.ocr-status-message {
    margin: 15px 0;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ocr-status-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ocr-status-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.ocr-status-message.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.ocr-status-message .status-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ocr-status-message .status-icon {
    font-size: 16px;
}

.ocr-status-message .status-text {
    font-size: 14px;
}

/* OCR Mobile Responsiveness */
@media (max-width: 480px) {
    .ocr-verification {
        padding: 0.75rem;
    }
    
    .verification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .verification-label {
        font-size: 0.85rem;
    }
    
    .verification-result {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    
    .extracted-text textarea {
        height: 80px;
        font-size: 0.75rem;
    }
    
    .toggle-text-btn, .retry-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animation for progress bar */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.progress-text {
    animation: pulse 2s infinite;
}

/* BML Connect Payment Styles */
.bml-payment-info {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin-top: 15px;
    border: 2px solid #1E5757;
}

.payment-gateway-logo {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1E5757;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.payment-features li {
    margin: 8px 0;
    color: #28a745;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Gateway settings styles in admin */
.gateway-settings {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1E5757;
}

.gateway-settings h6 {
    color: #1E5757;
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 600;
} 