.order-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            overflow-y: auto;
        }
        
        .order-content {
            background: white;
            margin: 20px auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
            position: relative;
        }
        
        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .order-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .order-form {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #333;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: #007bff;
        }
        
        .order-summary {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 25px;
        }
        
        .order-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .order-item:last-child {
            border-bottom: none;
        }
        
        .order-item-info {
            flex: 1;
        }
        
        .order-item-name {
            font-weight: 600;
            color: #333;
        }
        
        .order-item-generic {
            color: #666;
            font-size: 12px;
            margin-top: 2px;
        }
        
        .order-item-mg {
            color: #007bff;
            font-size: 12px;
            font-weight: 500;
        }
        
        .order-item-price {
            font-weight: 600;
            color: #333;
        }
        
        .order-total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #007bff;
            text-align: right;
        }
        
        .order-total strong {
            font-size: 18px;
            color: #007bff;
        }
        
        .order-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-primary {
            background: #007bff;
            color: white;
        }
        
        .btn-primary:hover {
            background: #0056b3;
        }
        
        .btn-secondary {
            background: #6c757d;
            color: white;
        }
        
        .btn-secondary:hover {
            background: #545b62;
        }
        
        .close-order {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .close-order:hover {
            color: #333;
        }
        
        /* Payment gateway styles */
        .payment-gateway {
            margin-top: 15px;
            padding: 15px;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
        
        .payment-gateway-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .payment-gateway-header img {
            height: 30px;
            margin-right: 10px;
        }
        
        .payment-gateway-header h4 {
            margin: 0;
            color: #333;
        }
        
        .payment-form {
            display: grid;
            gap: 15px;
        }
        
        .payment-form input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .stripe-gateway {
            border-left: 4px solid #6772e5;
        }
        
        .paypal-gateway {
            border-left: 4px solid #0070ba;
        }
        
        .card-gateway {
            border-left: 4px solid #2c3e50;
        }
        
        @media (max-width: 768px) {
            .order-sections {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .order-content {
                margin: 10px;
                padding: 20px;
            }
        }
 .prescription-btn, .track-btn {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            margin-right: 15px;
            background-color: #10b981;;
            color: white;
        /*    border: 1px solid #007bff;*/
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .prescription-btn:hover, .track-btn:hover {
            background-color: #007bff;
            color: #fff;
        }
        
        .prescription-btn i, .track-btn i {
            margin-right: 5px;
            font-size: 16px;
        }
        
        /* Track Order Modal Styles */
        #trackOrderModal .modal-body {
            padding: 25px;
        }
        
        #trackOrderModal h3 {
            margin-bottom: 20px;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        #trackOrderModal h3 i {
            margin-right: 10px;
            color: #007bff;
        }
        
        #trackOrderModal .form-group {
            margin-bottom: 20px;
        }
        
        #trackOrderModal label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        #trackOrderModal input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        #trackOrderModal button {
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
        }
        
        #trackOrderModal button:hover {
            background-color: #0056b3;
        }






        /* prescripton buttion */
        /* Add these styles to your CSS file */
.file-upload-container {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.file-upload-container:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    pointer-events: none;
}

.file-upload-info i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 10px;
}

.file-upload-info span {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.file-upload-info small {
    color: #666;
    font-size: 12px;
}

.file-preview {
    background-color: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-info i {
    color: #28a745;
    font-size: 24px;
    margin-right: 10px;
}

.file-name {
    flex-grow: 1;
    font-weight: 500;
    color: #333;
}

.remove-file {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file:hover {
    background: #c82333;
}

.prescription-note {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    color: #856404;
    font-size: 14px;
}

.prescription-note i {
    margin-right: 8px;
}

.prescription-required {
    border-color: #dc3545 !important;
    background-color: #f8d7da !important;
}

.prescription-required .file-upload-info i {
    color: #dc3545;
}

.dragover {
    border-color: #007bff !important;
    background-color: #f0f8ff !important;
}

#prescriptionUploadGroup.required label::after {
    content: " *";
    color: #dc3545;
}