        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f4f4f4;
        }

        .receipt-container {
            background-color: #fff;
            padding: 20px;
            margin: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .receipt-header {
            text-align: left;
            margin-bottom: 20px;
        }

        .receipt-header h1 {
            margin: 0;
            font-size: 24px;
            color: #333;
        }

        .receipt-header p {
            margin: 0;
            font-size: 14px;
            color: #777;
        }

        .receipt-details,
        .receipt-footer {
            margin-top: 20px;
        }

        .receipt-details table {
            width: 100%;
            border-collapse: collapse;
        }

        .receipt-details th,
        .receipt-details td {
            max-width: 150px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;

            padding: 10px;
            border-bottom: 1px solid #ddd;
            text-align: left;
        }

        .receipt-details th {
            background-color: #f9f9f9;
            color: #333;
        }

        .receipt-total {
            text-align: right;
            margin-top: 20px;
            font-size: 18px;
            color: #333;
        }

        .receipt-footer {
            text-align: center;
            font-size: 12px;
            color: #777;
        }

        .receipt-footer p {
            margin: 5px 0;
        }

        input[type="text"],
        input[type="number"],
        select {
            font-size: inherit;
            border: 1px solid #ccc;
            display: inline;
            background: #fff;
            padding: 2px 4px;
            appearance: none;
            box-sizing: border-box;
            min-width: 200px;
            max-width: 100%;
        }

        .receipt-details th:nth-child(2),
        .receipt-details td:nth-child(2) {
            max-width: 40px;
            width: 40px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .receipt-details th:nth-child(4),
        .receipt-details td:nth-child(4) {
            max-width: 80px;
            width: 80px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .ItemInput,
        .ItemSelect {
            width: 100%;
        }


        .currency-wrapper {
            position: relative;
            width: 100%;
        }

        .currency-wrapper input {
            width: calc(100% - 20px);
            padding-right: 5px;
            box-sizing: border-box;
        }

        .currency-symbol {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            font-weight: 100;
        }

        @media print {
            .print-element {
                display: none !important;
            }

            input[type="text"],
            input[type="number"],
            select {
                border: none !important;
                background: none !important;
                padding: 0 !important;
            }

            #myModal {
                display: none !important;
            }
        }

        h1,
        h2,
        h3,
        h4 {
            text-align: center;
        }

        .help-text {
            text-align: center;
            font-size: 16px;
            color: #555;
            margin: 10px 0;
            font-style: italic;
        }

        .print-button {
            display: inline-block;
            cursor: pointer;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            margin-left: 0;
        }

        .print-button:hover {
            background-color: #0056b3;
        }

        .swishCode {
            text-align: center;


        }

        /* Modal container */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            /* Stay in place */
            z-index: 1000;
            /* Sit on top */
            left: 0;
            top: 0;
            width: 100%;
            /* Full width */
            height: 100%;
            /* Full height */
            overflow: auto;
            /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.5);
            /* Black w/ opacity */
        }

        /* Modal content */
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            /* 15% from the top and centered */
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            /* Could be more or less, depending on screen size */
            max-width: 350px;
            /* Maximum width */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            align-items: center;
        }

        .qrcode {
            margin: 0 auto;
            display: block;
            align-self: center;
        }


        /* Close button */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        /* Button styling */
        .swish-button {
            border: none;
            max-width: 150px;
            cursor: pointer;
        }

        .product-input-container {
            background-color: #fff;
            padding: 20px;
            margin: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-input-container div {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .product-input-container label {
            flex: 0 0 120px;
        }

        .product-input-container input[type="text"],
        .product-input-container input[type="number"],
        .product-input-container input[type="range"],
        .product-input-container select {
            border: 1px solid #ccc;
            background: #fff;
            padding: 5px;
            flex: 1;
            max-width: 200px;
        }

        .product-input-container .currency-wrapper {
            display: flex;
            align-items: center;
        }

        .product-input-container .currency-wrapper input {
            flex: 1;
            width: auto;
        }

        .product-input-container .currency-wrapper .currency-symbol {
            margin-left: 5px;
            position: static;
        }

        #add-product-btn {
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .instructions-box {
            background-color: #e9f7ff;
            padding: 15px;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            border: 1px solid #007bff;
        }

        .toggle-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            margin-left: 0;
        }

        .toggle-button:hover {
            background-color: #0056b3;
        }

        .swish-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
        }

        .swish-description {
            font-size: 14px;
            color: #555;
            font-style: italic;
        }

        .header-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }

        .header-section h1 {
            text-align: center;
        }

        .header-buttons {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 5px;
            gap: 10px;
            align-self: center;
        }