    body {
        font-family: 'Shabnam', sans-serif;
        text-align: right;
        direction: rtl;
    }

    .action-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .action-btn {
        padding: 8px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Shabnam', sans-serif;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

    .print-btn {
        background-color: #0F4C81;
        color: white;
    }

    .share-btn {
        background-color: #4CAF50;
        color: white;
    }

    .back-btn {
        background-color: #6c757d;
        color: white;
        margin-top: 15px;
    }

    @media print {
        .no-print {
            display: none !important;
        }

        body {
            padding: 20px;
        }

        .receipt-box {
            border: none !important;
            box-shadow: none !important;
        }
    }

    .receipt-box {
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin: 0 auto;
        max-width: 600px;
    }

    .receipt-box p {
        margin-bottom: 12px;
    }

    body {
        font-family: 'shabnam', sans-serif;
        text-align: right;
        direction: rtl;
    }

    .success-message {
        margin: 20px;
        padding: 15px;
        background-color: #dff0d8;
        color: #3c763d;
        border: 1px solid #d6e9c6;
        border-radius: 4px;
    }

    .btn {
        display: inline-block;
        padding: 6px 12px;
        margin: 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        background-color: rgb(0, 100, 255);
        border: 1px solidrgb(255, 255, 255);
        color: white;
        text-decoration: none;
        border-radius: 4px;
    }

    .btn:hover {
        background-color: rgb(00, 100, 255);
        border-color: rgb(255, 255, 255);
    }

    .temporary-receipt-notice {
        margin: 25px auto;
        max-width: 600px;
        animation: fadeIn 0.6s ease-in-out;
    }

    .notice-content {
         /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
        border-left: 4px solid #0F4C81;
        border-radius: 8px;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }

    .notice-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(15, 76, 129, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 0;
    }

    .notice-icon {
        font-size: 24px;
        color: #0F4C81;
        margin-left: 15px;
        flex-shrink: 0;
        z-index: 1;
    }

    .notice-text1 {
        margin: 0;
        color: red;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.6;
        z-index: 1;
        position: relative;
    }

    .notice-text {
        margin: 0;
        color: #495057;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.6;
        z-index: 1;
        position: relative;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .notice-content {
            flex-direction: column;
            text-align: center;
        }

        .notice-icon {
            margin-left: 0;
            margin-bottom: 10px;
        }
    }

    @media print {
        body * {
            visibility: hidden;
        }

        .receipt-box,
        .receipt-box * {
            visibility: visible;
        }

        .receipt-box {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            margin: auto;
        }
    }