     /* Sidebar styles */
    #side-menu {
        position: fixed;
        top: 0;
        left: -190px; /* Initially hide the sidebar off-screen */
        width: 200px;
        height: 100vh;
        overflow-y: auto;
        overflow-x: none !important;
        background-color: #fbde36 !important;
        transition: left 0.3s ease; /* Smooth transition when sliding in/out */
        z-index: 1000;
    }

    /* Show the sidebar when hovering over it */
    #side-menu:hover {
        left: 0; /* Move the sidebar to the visible area */
    }

    /* Optional: You can also add this for the main content to shift when the sidebar shows */
    .container-fluid {
        transition: margin-left 0.3s ease;
    }

    /* If you want to add margin to the content when the sidebar is shown */
    #side-menu:hover + .container-fluid {
        margin-left: 200px; /* Adjust content position */
    }
    #toast-container > div {
        border-radius: 12px !important;
        display: block !important;
        opacity: 1 !important;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.2) !important;
        background-color: white !important;
        color: #333 !important;
        pointer-events: auto !important;
    }

    /* Borders for toast types */
    .toast-success { border-left: 4px solid #fbde36 !important; }
    .toast-error { border-left: 4px solid #dc3545 !important; }
    .toast-info { border-left: 4px solid #17a2b8 !important; }
    .toast-warning { border-left: 4px solid #ffc107 !important; }


    .gradient-button {
        color: white;
        font-size: 16px;
        cursor: pointer;
        padding: 10px 20px;
        border-width: initial;
        border-style: none;
        border-color: initial;
        border-image: initial;
        border-radius: 5px;
        background: linear-gradient(45deg, rgb(255, 204, 153), rgb(249, 77, 106), rgb(153, 0, 204));
        transition: background 0.3s ease-in-out;
    }

    .custom-col {
        padding-left: 10px;
        /* border-radius: 10px; */
    }

    .selected {
        border: 3px solid yellow;
        /* Blue border to highlight selection */
        border-radius: 8px;
        box-shadow: 0 0 10px gray;
        /* Optional shadow */
        padding: 5px;
    }

    .btn {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #f8f9fa;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .input {
        border-radius: 10px;
        border-bottom: 2px solid purple;
    }

    .highlighted {
        background-color: #007bff;
        /* Blue background for highlighted button */
        color: white;
        /* White text for visibility */
    }

    .custom-list li {
        display: flex;
        align-items: center;
        /* Center the dot and text vertically */
    }

    .dot {
        margin-right: 8px;
        /* Add some spacing between the dot and text */
        font-size: 30px;
        /* Adjust the size of the dot if needed */
        font-weight: bold;
        /* Make the dot bold */
    }

    .form-bg {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 8px;
        padding: 20px;
        width: 1000px;
    }

    .zoom {
        width: 80px;
        height: 80px;
    }

    /* For medium screens (768px and above) */
    @media (min-width: 320px) {
        .p {
            font-size: 13px;
        }
    }

    @media (min-width: 768px) {
        .p {
            font-size: 16px;
        }
    }

    /* For larger screens (1024px and above) */
    @media (min-width: 1024px) {
        .p {
            font-size: 16px;
        }
    }

    /* For extra-large screens (1200px and above) */
    @media (min-width: 1200px) {
        .p {
            font-size: 16px;
        }
    }

    @media (min-width: 1400px) {
        .p {
            font-size: 20px;
        }
    }

    @media (min-width: 300px) and (max-width: 360px) {
        .form-bg {
            /* margin-top: 120px;
            padding-top: 20px; */
            top: 360px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    @media (min-width: 360px) and (max-width: 380px) {
        .form-bg {
            /* margin-top: 120px;
            padding-top: 20px; */
            top: 400px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    @media (min-width: 380px) and (max-width: 400px) {
        .form-bg {
            /* margin-top: 120px;
            padding-top: 20px; */
            top: 400px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    @media (min-width: 400px) and (max-width: 410px) {
        .form-bg {
            /* margin-top: 120px; */
            /* padding-top: 60px; */
            top: 350px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    @media (min-width: 410px) and (max-width: 450px) {
        .form-bg {
            /* margin-top: 120px; */
            /* padding-top: 60px; */
            top: 340px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    @media (min-width: 450px) and (max-width: 467px) {
        .form-bg {
            /* margin-top: 120px; */
            /* padding-top: 60px; */
            top: 340px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    /* For devices like iPhone 12/13 Mini, Galaxy S9, and similar */
    @media (min-width: 467px) and (max-width: 760px) {
        .form-bg {
            top: 330px !important;
            max-height: 650px !important;
            width: 90%; /* Dynamic width for smaller screens */
        }

        .zoom {
            width: 40px;
            height: 40px;
        }

        .text-top {
            display: none;
        }
    }

    /* For devices like iPhone 12/13/14, Samsung Galaxy S20/S21, etc. */
    @media (min-width: 760px) and (max-width: 912px) {
        .form-bg {
            top: 380px !important;
            /* margin-top: 150px; */
            /* padding-top: 20px; */
            max-height: 700px !important;
            width: 80%;
        }

    }

    /* For devices like iPhone 12/13/14, Samsung Galaxy S20/S21, etc. */
    @media (min-width: 912px) and (max-width: 1024px) {
        .form-bg {
            top: 380px !important;
            /* margin-top: 150px; */
            /* padding-top: 20px; */
            max-height: 700px !important;
            width: 80%;
        }

    }


    /* For larger tablets and small desktops */
    @media (min-width: 1024px) and (max-width: 1100px) {
        .form-bg {
            top: 400px !important;
            max-height: 700px !important;
            width: 80%;
        }
    }

    /* For small desktops */
    @media (min-width: 1100px) and (max-width: 1500px) {
        .form-bg {
            top: 400px !important;
            /* margin-top: 90px;
            padding-top: 20px; */
            max-height: 700px !important;
            width: 1000px;
        }
    }

    /* For large desktops */
    @media (min-width: 1500px) and (max-width: 2560px) {
        .form-bg {
            top: 50% !important;
            /* margin-top: 50px; */
            max-height: 1000px !important;
            width: 1200px;
        }
    }

    /* Video as background */
    .background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;      /* Ensures the video covers the whole background */
        z-index: -1;            /* Puts the video behind the content */
        max-height: 720px;      /* Adjust as needed to limit height for compression */
        will-change: transform; /* Optimizes rendering performance */
        filter: brightness(80%);/* Optional: Darkens video for better text readability */
    }

    /* Container for the content, ensuring it stays on top of the video */
    .content-wrapper {
        position: relative;
        z-index: 1;
    }

    /* Styling for the inner content */
    .slide-inner {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    /* Ensure text and other elements are readable on top of the video */
    .slide-title, .slide-text, .slide-btns {
        color: white; /* Adjust color for visibility */
    }

    /* Optional: Add a subtle overlay for better contrast with the text */
    .slide-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        z-index: 0;
    }

    .header-pr {
        transition: background-color 0.4s ease-in-out;
        background-color: transparent;
    }

    .header-pr.scrolled {
        background-color: white !important;
        /* background-color: rgba(132, 122, 122, 0.8); Change this color as needed */
    }

        .indent-container {
        max-width: 100%;
        padding: 1rem;
    }

    .content-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
    }

    .header-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .form-label {
        font-size: 0.85rem;
        font-weight: 500;
        color: #86868b;
        margin-bottom: 0.5rem;
    }

    .form-control, .form-select {
        border-radius: 10px;
        border: 1px solid #d2d2d7;
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        box-shadow: none;
        background-color: #f5f5f7;
        transition: all 0.2s ease;
    }

    .form-control:focus, .form-select:focus {
        border-color: #0071e3;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
    }

    .btn {
        border-radius: 20px;
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .btn-primary {
        background-color: #0071e3;
        border: none;
    }

    .btn-primary:hover {
        background-color: #0077ed;
        transform: scale(1.02);
    }

    .btn-danger {
        background-color: #ff3b30;
        border: none;
    }

    .btn-danger:hover {
        background-color: #ff4f45;
    }

    .btn-danger a {
        color: white;
        text-decoration: none;
    }

    .preview-container {
        margin-top: 0.5rem;
    }

    img[src="#"] {
        display: none;
    }

    img {
        max-width: 100%;
        border-radius: 8px;
        margin-top: 10px;
    }

    .alert {
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .alert-success {
        background-color: #dcfce7;
        color: #15803d;
        border: 1px solid #86efac;
    }

    .alert-danger {
        background-color: #fee2e2;
        color: #b91c1c;
        border: 1px solid #fecaca;
    }

    .modal-content {
        border-radius: 14px;
        border: none;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    }

    .modal-header {
        border-bottom: none;
        padding: 1.5rem 1.5rem 0.75rem;
    }

    .modal-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1d1d1f;
    }

    .modal-footer {
        border-top: none;
        padding: 1rem 1.5rem 1.5rem;
        justify-content: flex-end;
        gap: 0.75rem;
    }

    .input-group {
        position: relative;
    }

    .top-actions {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .back-link {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
        margin-right: auto;
    }

    /* Add this new style for image previews */
    .preview-image {
        max-width: 150px; /* Make previews smaller */
        max-height: 100px;
        border-radius: 6px;
        margin-top: 10px;
        border: 1px solid #e0e0e0;
    }

    /* Style for the file browser button */
    .file-browse-btn {
        background-color: #f0f0f0;
        padding: 4px 10px;
        border-radius: 4px;
        color: #333;
        font-size: 0.85rem;
        border: 1px solid #ddd;
        white-space: nowrap;
        margin-right: 10px;
    }

    /* Add hover effect */
    .file-browse-btn:hover {
        background-color: #e0e0e0;
    }

    /* New styles for step-by-step process */
    .step-container {
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background: #fafafa;
    }

    .step-container.active {
        border-color: #0071e3;
        background: white;
    }

    .step-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .step-number {
        background: #0071e3;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 1rem;
    }

    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 34px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .slider {
        background-color: #0071e3;
    }

    input:checked + .slider:before {
        transform: translateX(26px);
    }

    .service-status {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .service-badge {
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .service-enabled {
        background-color: #dcfce7;
        color: #15803d;
    }

    .service-disabled {
        background-color: #fee2e2;
        color: #b91c1c;
    }

    /* Apple-style badge for unique enquiry number */
    .apple-badge {
        display: inline-block;
        background: linear-gradient(90deg, #f5f5f7 0%, #e9e9ec 100%);
        color: #1d1d1f;
        font-weight: 600;
        font-size: 1.05rem;
        border-radius: 16px;
        border: 1px solid #d2d2d7;
        padding: 0.45rem 1.2rem;
        letter-spacing: 0.02em;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        text-align: center;
        min-width: 160px;
        outline: none;
        pointer-events: none;
        margin-left: 10px;
    }

    /* Add style for edit icon */
    .edit-icon {
        color: #0071e3;
        font-size: 1.2rem;
        cursor: pointer;
        margin-left: 16px;
        background: none;
        border: none;
        padding: 0;
        transition: color 0.2s;
    }
    .edit-icon:hover {
        color: #005bb5;
    }

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .payment-body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
            background: #fafafa;
            height: 100vh;
            padding: 15px;
            line-height: 1.47059;
            color: #1d1d1f;
            overflow: hidden;
        }

        .payment-container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            height: calc(100vh - 30px);
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
        .payment-header {
            background: #ffffff;
            padding: 18px 25px 15px;
            border-bottom: 1px solid #f5f5f7;
            flex-shrink: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .company-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .company-logo i {
            font-size: 18px;
            color: #007aff;
        }

        .company-logo span {
            font-size: 16px;
            font-weight: 600;
            color: #1d1d1f;
        }

        .payment-title h1 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #1d1d1f;
            letter-spacing: -0.003em;
        }

        .indent-id {
            font-size: 15px;
            color: #86868b;
            font-weight: 400;
        }

        .status-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 12px;
            background: #f5f5f7;
            color: #1d1d1f;
        }

        .status-pending {
            background: #fff4e5;
            color: #b7410e;
        }

        .status-complete {
            background: #f0fdf4;
            color: #15803d;
        }

        .customer-info {
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .customer-name {
            font-size: 14px;
            font-weight: 600;
            color: #1d1d1f;
        }

        .customer-contact {
            font-size: 14px;
            color: #007aff;
            font-weight: 500;
        }

        .company-name {
            font-size: 14px;
            color: #86868b;
            font-weight: 400;
        }

        .separator {
            font-size: 12px;
            color: #86868b;
            font-weight: 400;
        }

        /* Content Styles */
        .payment-content {
            flex: 1;
            padding: 15px 25px;
            overflow: hidden;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 20px;
            height: 100%;
        }

        /* Payment Section */
        .payment-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 100%;
        }

        .vendor-banking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Transaction History Section */
        .transaction-history-section {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin-top: 15px;
        }

        .remarks-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: 100%;
        }

        .remarks-card {
            background: #ffffff;
            border-radius: 6px;
            border: 1px solid #e5e5e7;
            overflow: hidden;
            height: fit-content;
        }

        .remarks-card .card-header {
            background: #f8f9fa;
            border-bottom: 1px solid #e5e5e7;
            padding: 6px 12px 4px;
        }

        .remarks-card .card-header h3 {
            color: #1d1d1f;
            font-weight: 600;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .remarks-card .card-header i {
            color: #6b7280;
            font-size: 12px;
        }

        .remarks-card .card-body {
            padding: 6px 12px;
        }

        .remarks-content {
            padding: 0;
        }

        .remarks-input {
            width: 100%;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            padding: 8px;
            font-family: inherit;
            font-size: 16px;
            line-height: 1.4;
            color: #1d1d1f;
            background: #ffffff;
            resize: vertical;
            min-height: 70px;
            max-height: 120px;
            outline: none;
            transition: border-color 0.2s ease;
            font-weight: 400;
        }

        .remarks-input::placeholder {
            color: #9ca3af;
            font-weight: 400;
            font-size: 15px;
        }

        .remarks-input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
        }

        .remarks-input.has-content {
            color: #dc2626;
            font-weight: 700;
            border-color: #ef4444;
            box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
        }

        .remarks-input.has-content:focus {
            border-color: #dc2626;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
        }

        /* Info Section */
        .info-section {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .info-card {
            background: #fbfbfd;
            border-radius: 10px;
            border: 1px solid #f5f5f7;
            overflow: hidden;
            flex: 1;
        }

        .card-header {
            padding: 12px 15px 10px;
            border-bottom: 1px solid #f5f5f7;
            background: #ffffff;
        }

        .card-header h3 {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #1d1d1f;
        }

        .card-header i {
            font-size: 13px;
            color: #007aff;
        }

        .vendor-card .card-header i {
            color: #007aff;
        }

        .customer-card .card-header i {
            color: #22c55e;
        }

        .driver-card .card-header i {
            color: #e74c3c;
        }

        .card-body {
            padding: 12px 15px 15px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid #f5f5f7;
        }

        .info-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .label {
            font-weight: 400;
            color: #86868b;
            font-size: 12px;
        }

        .value {
            font-weight: 500;
            color: #1d1d1f;
            font-size: 12px;
            text-align: right;
        }

        /* Service Status Styles */
        .service-enabled {
            background-color: #dcfce7;
            color: #15803d;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            display: inline-block;
        }

        .service-disabled {
            background-color: #fee2e2;
            color: #b91c1c;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            display: inline-block;
        }

        /* Payment Section */
        .payment-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 100%;
        }

        .summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .summary-card {
            background: #ffffff;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #f5f5f7;
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 70px;
        }

        .summary-icon {
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .total-card .summary-icon {
            background: #e8f4ff;
            color: #007aff;
        }

        .paid-card .summary-icon {
            background: #f0fdf4;
            color: #22c55e;
        }

        .balance-card .summary-icon {
            background: #fef2f2;
            color: #ef4444;
        }

        .customer-rate-card .summary-icon {
            background: #f3e8ff;
            color: #7c3aed;
        }

        .customer-received-card .summary-icon {
            background: #ecfdf5;
            color: #059669;
        }

        .customer-balance-card .summary-icon {
            background: #fef3c7;
            color: #d97706;
        }

        .collect-card .summary-icon {
            background: #f0f9ff;
            color: #0284c7;
        }

        .pay-card .summary-icon {
            background: #fef3c7;
            color: #ea580c;
        }

        .summary-content {
            flex: 1;
        }

        .summary-content h4 {
            font-size: 12px;
            font-weight: 400;
            color: #86868b;
            margin-bottom: 3px;
        }

        .summary-content .amount {
            font-size: 16px;
            font-weight: 600;
            color: #1d1d1f;
            letter-spacing: -0.003em;
        }

        .input-wrapper {
            display: flex;
            align-items: center;
            background: #f9f9fb;
            border: 1px solid #e5e5e7;
            border-radius: 6px;
            padding: 6px 10px;
            margin-top: 2px;
            min-width: 120px;
        }

        .currency {
            font-size: 14px;
            font-weight: 500;
            color: #86868b;
            margin-right: 6px;
            flex-shrink: 0;
        }

        .amount-input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 16px;
            font-weight: 600;
            color: #1d1d1f;
            width: 100%;
            padding: 4px 0;
            min-width: 80px;
        }

        .amount-input::placeholder {
            color: #c6c6c8;
            font-weight: 400;
        }

        .amount-input:focus {
            color: #007aff;
        }

        .input-wrapper:focus-within {
            border-color: #007aff;
            background: #ffffff;
        }

        /* Input highlighting when typing */
        .input-wrapper.has-value {
            border-color: #ef4444;
            background: #fef2f2;
            box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
        }

        .input-wrapper.has-value .currency {
            color: #ef4444;
            font-weight: 600;
        }

        .input-wrapper.has-value .amount-input {
            color: #ef4444;
            font-weight: 700;
        }

        .input-wrapper.has-value:focus-within {
            border-color: #dc2626;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
        }

        /* Customer specific styling - green colors */
        .collect-card .input-wrapper.has-value {
            border-color: #10b981;
            background: #ecfdf5;
            box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
        }

        .collect-card .input-wrapper.has-value .currency {
            color: #10b981;
            font-weight: 600;
        }

        .collect-card .input-wrapper.has-value .amount-input {
            color: #10b981;
            font-weight: 700;
        }

        .collect-card .input-wrapper.has-value:focus-within {
            border-color: #059669;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
        }

        /* Customer remarks green styling */
        .customer-remarks-card .remarks-input.has-content {
            color: #10b981;
            font-weight: 700;
            border-color: #10b981;
            box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
        }

        .customer-remarks-card .remarks-input.has-content:focus {
            border-color: #059669;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
        }

        /* History Section */
        .history-section {
            background: #fbfbfd;
            border-radius: 8px;
            border: 1px solid #f5f5f7;
            overflow: hidden;
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 150px;
        }

        .history-header {
            padding: 10px 12px 8px;
            border-bottom: 1px solid #f5f5f7;
            background: #ffffff;
        }

        .history-header h3 {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #1d1d1f;
        }

        .history-list {
            flex: 1;
            overflow-y: auto;
            padding: 6px 0;
            max-height: 120px;
        }

        .history-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
        }

        .history-item:hover {
            background: #f9f9fb;
        }

        .history-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 28px;
            padding: 3px 2px;
            background: #f5f5f7;
            border-radius: 4px;
            text-align: center;
        }

        .history-date span {
            font-size: 11px;
            font-weight: 600;
            color: #1d1d1f;
            line-height: 1;
        }

        .history-date small {
            font-size: 8px;
            color: #86868b;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .history-details {
            flex: 1;
        }

        .payment-method {
            font-weight: 500;
            color: #1d1d1f;
            font-size: 10px;
            margin-bottom: 1px;
        }

        .reference {
            font-size: 8px;
            color: #86868b;
        }

        .history-amount {
            font-size: 11px;
            font-weight: 600;
            color: #1d1d1f;
        }

        /* Customer History Styling */
        /* .customer-history {
            border-left: 4px solid #007aff;
        } */

        .customer-history .history-header {
            background: #ffffff;
        }

        .history-date.customer-date {
            background: #f5f5f7;
            color: #1d1d1f;
        }

        .history-amount.customer-amount {
            color: #1d1d1f;
        }

        .customer-history .empty-icon {
            background: #f5f5f7;
        }

        .customer-history .empty-icon i {
            color: #86868b;
        }

        /* Footer */
        .payment-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 25px;
            background: #fbfbfd;
            border-top: 1px solid #f5f5f7;
            flex-shrink: 0;
        }

        .footer-left, .footer-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .btn-secondary, .btn-primary, .btn-screenshot {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #6c757d;
            border: 1px solid #dee2e6;
        }

        .btn-secondary:hover {
            background: #e9ecef;
            color: #495057;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-screenshot {
            background: #1d1d1f;
            color: white;
            border: none;
            width: 44px;
            height: 44px;
            padding: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-screenshot:hover {
            background: #2d2d2f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-screenshot:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .btn-screenshot i {
            font-size: 16px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #007aff 0%, #0056d3 100%);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #0056d3 0%, #003db3 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
        }

        .footer-note {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #86868b;
            font-size: 12px;
            background: #f8f9fa;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid #e9ecef;
        }

        .footer-note i {
            color: #007aff;
            font-size: 12px;
        }

        /* Empty State Styles */
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 8px;
            text-align: center;
            min-height: 80px;
        }

        .empty-icon {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: #f5f5f7;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .empty-icon i {
            font-size: 14px;
            color: #86868b;
        }

        .empty-text h4 {
            font-size: 12px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 2px;
        }

        .empty-text p {
            font-size: 10px;
            color: #86868b;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .vendor-banking-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .transaction-history-section {
                flex-direction: column;
                gap: 12px;
            }

            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .payment-body {
                padding: 15px;
            }

            .payment-header {
                padding: 20px 20px 15px;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .payment-title h1 {
                font-size: 22px;
            }

            .payment-content {
                padding: 15px 20px;
            }

            .payment-footer {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
                text-align: center;
            }

            .footer-left, .footer-right, .footer-center {
                width: 100%;
                justify-content: center;
            }

            .footer-center {
                order: -1;
            }

            .footer-right {
                gap: 12px;
            }

            .btn-secondary, .btn-primary, .btn-screenshot {
                min-width: 120px;
                justify-content: center;
            }
        }

        /* Scrollbar Styling for Webkit */
        .history-list::-webkit-scrollbar {
            width: 3px;
        }

        .history-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .history-list::-webkit-scrollbar-thumb {
            background: #d1d1d6;
            border-radius: 2px;
        }

        .history-list::-webkit-scrollbar-thumb:hover {
            background: #b3b3b8;
        }

